mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
10 lines
126 B
Text
10 lines
126 B
Text
program test()
|
|
|
|
var a := array { 1, 5, 8, 12 };
|
|
|
|
print( a[1] );
|
|
print( a[2] );
|
|
print( a[3] );
|
|
print( a[4] );
|
|
|
|
endprogram
|