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

11 lines
183 B
Text

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