mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
14 lines
125 B
Ruby
14 lines
125 B
Ruby
|
def bp_yield
|
||
|
yield
|
||
|
end
|
||
|
|
||
|
def bp_pass &b
|
||
|
bp_yield &b
|
||
|
end
|
||
|
|
||
|
i = 0
|
||
|
while i<30_000_000 # while loop 1
|
||
|
i += 1
|
||
|
bp_pass{}
|
||
|
end
|