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