@{
|
|
toChar(foo) {
|
|
"\""+foo+"\"";
|
|
}
|
|
p2(foo) {
|
|
foo * foo;
|
|
}
|
|
c = ["earth", "sky", "water"];
|
|
}
|
|
|
|
@{print(map(p2, [100, 2, 3]));}
|
|
|
|
@{print(map(toChar, c));}
|