renaming and small fixes

This commit is contained in:
Torsten Ruger
2014-06-08 00:56:40 +03:00
parent e7bb774da0
commit fbcfa844de
6 changed files with 42 additions and 36 deletions

View File

@ -7,9 +7,9 @@ class TestIf < MiniTest::Test
@string_input = <<HERE
def itest(n)
if( n < 12)
putstring("then")
"then".putstring()
else
putstring("else")
"else".putstring()
end
end