fixing test to pass

and extract own kind of same tests to bench
bench tests will need some loop, but not as large as c
This commit is contained in:
2019-07-25 21:25:15 +03:00
parent 14c965360d
commit 95af84e752
6 changed files with 23 additions and 7 deletions

View File

@ -1,6 +1,6 @@
class Space
def main(arg)
n = 10
n = 6
a = 0
b = 1
i = 1

View File

@ -1,5 +1,5 @@
class Space
def main(arg)
return "Hello-there\n".putstring
return "Hello-there".putstring
end
end

View File

@ -11,6 +11,6 @@ class Space
end
def main(arg)
return fibo_r(10)
return fibo_r(5)
end
end