RosettaCodeData/Task/Loops-Foreach/Elena/loops-foreach.elena
2023-07-01 13:44:08 -04:00

12 lines
199 B
Text

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