RosettaCodeData/Task/Loops-Foreach/Elena/loops-foreach-1.elena
2024-03-06 22:25:12 -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)
}
}