RosettaCodeData/Task/Loops-Foreach/MOO/loops-foreach.moo
2023-07-01 13:44:08 -04:00

5 lines
95 B
Text

things = {"Apple", "Banana", "Coconut"};
for thing in (things)
player:tell(thing);
endfor