RosettaCodeData/Task/Loops-Foreach/Pike/loops-foreach-1.pike
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

6 lines
147 B
Text

int main(){
array(int|string) collect = ({109, "Hi", "asdf", "qwerty"});
foreach(collect, int|string elem){
write(elem + "\n");
}
}