RosettaCodeData/Task/Loops-Foreach/Fantom/loops-foreach.fantom
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

11 lines
153 B
Text

class Main
{
public static Void main ()
{
Int[] collection := [1, 2, 3, 4, 5]
collection.each |Int item|
{
echo (item)
}
}
}