/* Test to compare map and each behavior */ numbers : {1, 2, 3, 4, 5}; add_ten : x -> x + 10; /* Test map with single table */ map_result : map @add_ten numbers; ..out "Map with single table:"; ..out map_result; /* Test each with single table */ each_result : each @add_ten numbers; ..out "Each with single table:"; ..out each_result;