RosettaCodeData/Task/Loops-Foreach/Elena/loops-foreach.elena
2020-02-17 23:21:07 -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
}
}