automate mains test more

move sources and include exit code and stdout in filename
This commit is contained in:
Torsten Ruger
2018-06-24 13:37:36 +03:00
parent 563ed4647a
commit 8d369dbfa1
7 changed files with 12 additions and 9 deletions

View File

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

View File

@ -0,0 +1,11 @@
n = 6
a = 0
b = 1
i = 1
while( i < n )
result = a + b
a = b
b = result
i = i + 1
end
return result

View File

@ -0,0 +1 @@
return "Hello-there".putstring

View File

@ -0,0 +1,5 @@
b = 10
while( b >= 1 )
b = b - 1
end
return b