small fix

This commit is contained in:
Torsten Ruger
2015-10-07 10:22:45 +03:00
parent 513bc8d7cf
commit cd96e78e2d
2 changed files with 5 additions and 2 deletions

View File

@ -176,10 +176,13 @@ HERE
def test_function_big_while
@string_input = <<HERE
class Object
int puts(int i)
return 0
end
int fibonaccit(int n)
int a = 0
int b = 1
while( n > 1 ) do
while( n > 1 )
int tmp = a
a = b
b = tmp + b