Skip to content

Instantly share code, notes, and snippets.

@rbishop
Last active March 23, 2016 11:32
Show Gist options
  • Select an option

  • Save rbishop/4534476 to your computer and use it in GitHub Desktop.

Select an option

Save rbishop/4534476 to your computer and use it in GitHub Desktop.
Minimal implementation of a REPL in Ruby. WAT?!
while true
line_num ||= 1
("%03d" % line_num + ' > ').display
code = gets
puts eval(code)
line_num += 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment