/* Debug test for t.map */ /* Basic table creation */ numbers : {1, 2, 3, 4, 5}; /* Test direct function call */ double : x -> x * 2; /* Test t.map step by step */ step1 : t.map; step2 : step1 @double; step3 : step2 numbers; /* Output results */ ..out "=== DEBUG T.MAP ==="; ..out "Step 1 (t.map):"; ..out step1; ..out "Step 2 (t.map @double):"; ..out step2; ..out "Step 3 (result numbers):"; ..out step3;