/* Simple test for t namespace */ numbers : {1, 2, 3, 4, 5}; double : x -> x * 2; /* Test t.map */ t_doubled : t.map @double numbers; first : t_doubled[1]; ..assert first = 2; ..out "T namespace test completed";