enum foo { x, y, z }; @{ toChar(foo) { "\""+foo+"\""; } square(foo) { foo * foo; } c = ["earth", "sky", "water"]; } @{print(map(square, [100, 2, 3]));} @{print(map(toChar, c));}