6 lines
48 B
Ruby
6 lines
48 B
Ruby
|
b = 10
|
||
|
while( b >= 1 )
|
||
|
b = b - 1
|
||
|
end
|
||
|
return b
|