RosettaCodeData/Task/Loops-Foreach/Fantom/loops-foreach.fantom
2023-07-01 13:44:08 -04: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)
}
}
}