Skip to content

Instantly share code, notes, and snippets.

@gustiando
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save gustiando/b9f1a16c32cad0ffbb5d to your computer and use it in GitHub Desktop.

Select an option

Save gustiando/b9f1a16c32cad0ffbb5d to your computer and use it in GitHub Desktop.
My nasty Ruby REPL
#!/usr/bin/env ruby
def repl
input = gets.chomp
result = eval input
puts result
repl
end
repl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment