rubyx/test/mains/source/adds__10.rb
Torsten Ruger 8d369dbfa1 automate mains test more
move sources and include exit code and stdout in filename
2018-06-24 13:37:36 +03:00

8 lines
65 B
Ruby

a = 0
b = 20
while( a < b )
a = a + 1
b = b - 1
end
return a