RosettaCodeData/Task/Loops-Foreach/Fantom/loops-foreach.fantom

12 lines
153 B
Plaintext

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