RosettaCodeData/Task/Loops-Foreach/MOO/loops-foreach.moo

6 lines
95 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
things = {"Apple", "Banana", "Coconut"};
for thing in (things)
player:tell(thing);
endfor