move the methods test to mains

previous commit made the mains tests more general
this joins methods tests here
so we can run them on arm too
fix #11
This commit is contained in:
Torsten Ruger
2018-08-18 20:06:15 +03:00
parent 80264c5322
commit 5b2c7745fe
13 changed files with 78 additions and 118 deletions

View File

@ -0,0 +1,9 @@
class Space
def main(arg)
b = 10
while( b >= 1 )
b = b - 1
end
return b
end
end