/* Minimal test for table enhancements */ /* Basic table creation */ numbers : {1, 2, 3, 4, 5}; /* Test enhanced map */ double : x -> x * 2; doubled : map @double numbers; /* Test t.map */ t_doubled : t.map @double numbers; /* Output results */ ..out "=== MINIMAL TABLE ENHANCEMENTS ==="; ..out "Enhanced map:"; ..out doubled; ..out "t.map:"; ..out t_doubled;