/* Test function calls in patterns */ is_even : n -> n % 2 = 0; test_func_pattern : n -> when n is (is_even n) then "function call result" 4 then "four" _ then "other"; result : test_func_pattern 4; ..out result;