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

Can't use conditionals on tryruby.org #135

Open jon80 opened 13 years ago

jon80 commented 13 years ago
  I can't type the following code snippet that is quoted on   http://www.ruby-doc.org/docs/ProgrammingRuby:

        if count > 10

puts "Try again" elsif tries == 3 puts "You lose" else puts "Enter a number" end
^