polserver/testsuite/escript/reff/ref002.src
2015-12-19 02:31:08 +01:00

8 lines
No EOL
109 B
Text

var ar := {};
ar.append( 3 );
ar.append( 4 );
print(ar);
var a := refto ar;
a.append(5);
print(ar);
print(a);