8d369dbfa1
move sources and include exit code and stdout in filename
8 lines
65 B
Ruby
8 lines
65 B
Ruby
a = 0
|
|
b = 20
|
|
while( a < b )
|
|
a = a + 1
|
|
b = b - 1
|
|
end
|
|
return a
|