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

13 lines
177 B
Text

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