Created
February 22, 2009 20:37
-
-
Save nakajima/68608 to your computer and use it in GitHub Desktop.
Can you make a smaller one?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
loop do | |
print '>> ' | |
output = eval($stdin.gets) | |
print '=> ' | |
puts output.inspect | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
With mini-irb: | |
>> Symbol.all_symbols.length | |
=> 958 | |
With irb: | |
>> Symbol.all_symbols.length | |
=> 2738 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment