mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
12 lines
202 B
Text
12 lines
202 B
Text
program test()
|
|
|
|
var b := { 1, 4, 6, 3, 7, 12, 72, 3 };
|
|
print( b );
|
|
b.reverse();
|
|
print( b );
|
|
|
|
endprogram
|
|
|
|
/**** Expected Output Begins: *****
|
|
(no)
|
|
***** Expected Output Ends ****/
|