11 lines
183 B
Text
11 lines
183 B
Text
import extensions;
|
|
|
|
public program()
|
|
{
|
|
var things := new string[]{"Apple", "Banana", "Coconut"};
|
|
|
|
foreach(var thing; in things)
|
|
{
|
|
console.printLine(thing)
|
|
}
|
|
}
|