soml-parser/test/cases/function_definition/function_if.tst
Torsten Ruger 7cc7ab5c18 adding condition to if statement
new syntax is if_true( . .. . )
where any string is allowed in case of true
2015-10-19 15:10:38 +03:00

26 lines
522 B
Scilab

int ofthen(int n)
if_plus(0)
isit = 42
else
maybenot = 667
end
end
-- -- --
s(:statements,
s(:function, :Integer,
s(:name, :ofthen),
s(:parameters,
s(:parameter, :Integer, :n)),
s(:statements,
s(:if_statement,
s(:condition,
s(:int, 0)),
s(:true_statements,
s(:assignment,
s(:name, :isit),
s(:int, 42))),
s(:false_statements,
s(:assignment,
s(:name, :maybenot),
s(:int, 667)))))))