mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
20 lines
297 B
Text
20 lines
297 B
Text
|
|
program test()
|
||
|
|
|
||
|
|
var b := { { 0, 0 } };
|
||
|
|
print( b );
|
||
|
|
|
||
|
|
b.insert( 1, { 21, 31 } );
|
||
|
|
print( b );
|
||
|
|
|
||
|
|
b.insert( 1, { 22, 32 } );
|
||
|
|
print( b );
|
||
|
|
|
||
|
|
b.insert( 1, { 23, 33 } );
|
||
|
|
print( b );
|
||
|
|
|
||
|
|
endprogram
|
||
|
|
|
||
|
|
/**** Expected Output Begins: *****
|
||
|
|
(no)
|
||
|
|
***** Expected Output Ends ****/
|