Please...
Where I read the error codes...?

What is the error 6 in my frc00.rb file ?:

_____________________________
# Primer programa
# Fabian Rios
# Feb.8.2000

a="Ases que "
b=" me gusta a mí˘
c=a+b
e=c
d=c.length
f=c.dup
f[9]='y'

puts f, d, e, f

#frc00.rb:6: Unterminated string meets end of file
# ?! version Ruby 1.4.5
_____________________________________
Thank you

Fabian


Robert Feldt wrote:

> I haven't found any docs on """ here documents but do you (Matz) expect
> them to stay in future Ruby versions? I think they should...
>
> Regards,
>
> Robert
>
> Example:
>
> $ ruby -v here.rb
> ruby 1.7.0 (2001-01-31) [i686-cygwin]
>
>   A small here-
>   document
>
> where here.rb is
>
> puts """
>   A small here-
>   document
> """