We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8383f6b commit 2002252Copy full SHA for 2002252
docs/lang/memory.md
@@ -40,3 +40,11 @@ These are the operations that manipulate memory allocations:
40
It is an error to access or free a region that has already been freed.
41
It is also an error to access (`load` or `store`) a pointer that is out of bounds, i.e., outside the range of valid indices for a given allocation.
42
(Doing a `ptradd` to produce an out-of-bounds pointer is not an error; subsequently accessing that pointer is.)
43
+
44
+Printing
45
+--------
46
47
+It is not an error to use the [core][] `print` operation on pointers, but the output is not specified.
48
+Implementations can choose to print any representation of the pointer that they deem helpful.
49
50
+[core]: ./core.md
0 commit comments