polserver/testsuite/escript/narray/narray9.src

14 lines
177 B
Text
Raw Permalink Normal View History

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 ****/