/* Test function with expression in body */ // Function with expression expr_func : x y -> x + y; // Test it ..out "=== EXPRESSION FUNCTION TEST ==="; result : expr_func 5 3; ..out result;