mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
14 lines
188 B
Text
14 lines
188 B
Text
|
|
program test()
|
||
|
|
|
||
|
|
var b := {};
|
||
|
|
print( b );
|
||
|
|
|
||
|
|
b.insert( 1, "hello" );
|
||
|
|
print( b );
|
||
|
|
|
||
|
|
endprogram
|
||
|
|
|
||
|
|
/**** Expected Output Begins: *****
|
||
|
|
(no)
|
||
|
|
***** Expected Output Ends ****/
|