summaryrefslogtreecommitdiff
path: root/sample/blk.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/blk.rb')
-rw-r--r--sample/blk.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/sample/blk.rb b/sample/blk.rb
index 4e618bce2d..12d1038fd0 100644
--- a/sample/blk.rb
+++ b/sample/blk.rb
@@ -2,8 +2,8 @@ def foo()
$block = Block.new
end
-foo(){i | print "i = ", i, "\n"}
-$block.do(2)
+foo(){i| print "i = ", i, "\n"}
+$block.call(2)
-foo(){i | print "i*2 = ", i*2, "\n"}
-$block.do(2)
+foo(){i| print "i*2 = ", i*2, "\n"}
+$block.call(2)