mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
14 lines
172 B
Text
14 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 ****/
|