/* Test program */ /* func sum x y as + x y end decl x decl y set x 10 set y 20 sum(x y) */ decl user_input set user_input in("give input: ") out( concat("your input was: " user_input "!") ) decl var set var true if var then out("var on tosi!") end if not var then out("var on epatosi!") end "done"