/* Simple test for each function call */ /* Basic table creation */ numbers : {1, 2, 3}; /* Define function */ double : x -> x * 2; /* Test direct function call */ direct_call : double 5; /* Test each with explicit arguments */ each_call : each @double numbers; /* Output results */ ..out "=== EACH SIMPLE CALL TEST ==="; ..out "Direct call result:"; ..out direct_call; ..out "Each call result:"; ..out each_call;