4 lines
75 B
Text
4 lines
75 B
Text
|
|
var exch := (ref object x){ x := 2 };
|
||
|
|
var a := 1;
|
||
|
|
exch(ref a);
|