summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 2bdf851..55a62ea 100644
--- a/README.md
+++ b/README.md
@@ -35,8 +35,8 @@ fn main(argc, argv) {
// bad heap management
heap -= argc;
- // GOLEM has no * deference
- ptr = &i;
+ // GOLEM has no * deference and uses $ for reference
+ ptr = $i;
ret += ptr[0];
return ret;