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