B
basi
Hello:
puts aString <<< no error printing aString here
process(aString)
.....
....
def process(aString)
puts aString <<< error printing aString here
end
The error is: Exception: cannot convert Class into String
What would it cause for aString to become a Class?
Thanks!
basi
puts aString <<< no error printing aString here
process(aString)
.....
....
def process(aString)
puts aString <<< error printing aString here
end
The error is: Exception: cannot convert Class into String
What would it cause for aString to become a Class?
Thanks!
basi