test name expr

This commit is contained in:
Torsten Ruger
2015-07-19 11:15:38 +03:00
parent 7451493193
commit cbff41b61d
5 changed files with 23 additions and 24 deletions

View File

@ -18,11 +18,11 @@ HERE
def ttest_if_function
@string_input = <<HERE
def itest(n)
if( n < 12)
"then".putstring()
else
"else".putstring()
end
if( n < 12)
"then".putstring()
else
"else".putstring()
end
end
itest(20)