Skip to content

Instantly share code, notes, and snippets.

@tjsingleton
Last active December 20, 2015 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tjsingleton/6191229 to your computer and use it in GitHub Desktop.
Save tjsingleton/6191229 to your computer and use it in GitHub Desktop.
_ = nil
scope = binding
loop do
print "> "
code = gets.chomp
_ = eval(code, scope)
puts "=> #{_.inspect}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment