polserver/testsuite/escript/array/array09.src

14 lines
182 B
Text
Raw Normal View History

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