summaryrefslogtreecommitdiff
path: root/sample/eval.rb
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-12-19 20:42:50 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-12-19 20:42:50 +0000
commit63406c49712703ca63d610e75bba4ed0078c0f16 (patch)
treedf1d1c9084747f774a22748f755ae7aea891e4c2 /sample/eval.rb
parent354af9da36eaeec70d4fdaddab78a8ecb11101a0 (diff)
Improve.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/eval.rb')
-rw-r--r--sample/eval.rb15
1 files changed, 7 insertions, 8 deletions
diff --git a/sample/eval.rb b/sample/eval.rb
index 8b582b0fdc..90b839e873 100644
--- a/sample/eval.rb
+++ b/sample/eval.rb
@@ -1,13 +1,13 @@
line = ''
-indent=0
+indent = 0
$stdout.sync = TRUE
print "ruby> "
-while TRUE
+loop do
l = gets
- unless l
- break if line == ''
+ if l.nil?
+ break if line.empty?
else
- line = line + l
+ line += l
if l =~ /,\s*$/
print "ruby| "
next
@@ -32,10 +32,9 @@ while TRUE
begin
print eval(line).inspect, "\n"
rescue ScriptError, StandardError
- $! = 'exception raised' unless $!
- print "ERR: ", $!, "\n"
+ printf "ERR: %s\n", $! || 'exception raised'
end
- break if not l
+ break if l.nil?
line = ''
print "ruby> "
end