polserver/testsuite/escript/narray/narray9.src
2015-12-19 02:31:08 +01:00

13 lines
172 B
Text

program test()
foreach i in { 1,12,3,32,57 }
print( i );
endforeach
endprogram
/**** Expected Output Begins: *****
1
12
3
32
57
***** Expected Output Ends ****/