mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8 lines
110 B
Ruby
8 lines
110 B
Ruby
|
i= 0.0; f = 0.0
|
||
|
while i<30_000_000
|
||
|
i+= 1
|
||
|
f += 0.1; f -= 0.1
|
||
|
f += 0.1; f -= 0.1
|
||
|
f += 0.1; f -= 0.1
|
||
|
end
|