/* Test t. function calls */ /* Basic table creation */ numbers : {1, 2, 3}; /* Define function */ double : x -> x * 2; /* Test t.map function call */ t_map_result : t.map @double numbers; /* Output results */ ..out "=== T. FUNCTION CALL TEST ==="; ..out "t.map result:"; ..out t_map_result;