Sophrinix / TryRuby

Try Ruby is a interactive shell that quickly and whimsically teaches the Ruby programming language. Originally _why's idea, it has been recreated from the ground up by Rubyists who have a passion for Ruby and for teaching their fellow (wo)man how to program.
tryruby.org
345 stars 80 forks source link

Cannot use hashes on www.tryruby.org #134

Open jon80 opened 13 years ago

jon80 commented 13 years ago

instSection = {
SyntaxError:

:112: syntax error, unexpected tIDENTIFIER, expecting ']'
instSection = {
^

:113: syntax error, unexpected keyword_end, expecting '}' instruments = { 'cello ' => 'string', SyntaxError:
:112: syntax error, unexpected tIDENTIFIER, expecting ']' instruments = { 'cello ' => 'string', ^
:113: syntax error, unexpected keyword_end, expecting '}'

It would be expected that the interpreter returns (lets me type the rest of the code when I am in mid coding e.g. after typing the ','.

The code snippet and hash struct is documented by the original author of Ruby at http://www.ruby-doc.org/docs/ProgrammingRuby, under heading 'Arrays and Hashes'.