Hi, >From: Fabian Rios <frios / udea.edu.co> >Subject: [ruby-talk:10601] Re: Are """ here documents here to stay? :-) > Please... > Where I read the error codes...? > > What is the error 6 in my frc00.rb file ?: This is because Ruby ver 1.4.x assumes Japanese EUC code by default. Please use -Kn option or upgrade to ver 1.6.x. > _____________________________ > # 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 > _____________________________________ M.Tanaka