3 lines
172 B
Text
3 lines
172 B
Text
var n = 42;
|
|
say Sys.refaddr(\n); # prints the address of the variable
|
|
say Sys.refaddr(n); # prints the address of the object at which the variable points to
|