RosettaCodeData/Task/Loops-Foreach/Elena/loops-foreach-1.elena
2026-02-01 16:33:20 -08:00

12 lines
201 B
Text

import system'routines;
import extensions;
public Program()
{
var things := new string[]{"Apple", "Banana", "Coconut"};
things.forEach::(thing)
{
Console.printLine(thing)
}
}