6 lines
70 B
Text
6 lines
70 B
Text
|
|
TYPE IntRef = REF INTEGER;
|
||
|
|
|
||
|
|
VAR intref := NEW(IntRef);
|
||
|
|
|
||
|
|
intref^ := 10
|