Top Level Namespace
Defined in:
Method Summary
-
loop(start = 0, &)
Repeatedly executes the block.
Method Detail
def loop(start = 0, &)
#
Repeatedly executes the block.
loop do
line = gets
break unless line
# ...
end