summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/level0.cpp
diff options
context:
space:
mode:
authorolpc user <olpc@xo-5d-f7-86.localdomain>2019-11-26 03:15:09 -0800
committerolpc user <olpc@xo-5d-f7-86.localdomain>2019-11-26 03:15:09 -0800
commit0a9e019f082578895e4ebc88e4b89188da17947f (patch)
tree2a2017bec3d0450deb086fa6ad92d44b9e025e3b /starts/meaning-vm/level0.cpp
parentd5e8c913a0c3b63ef7eadea41ec1818548f5f4cf (diff)
downloadstandingwithresilience-0a9e019f082578895e4ebc88e4b89188da17947f.tar.gz
standingwithresilience-0a9e019f082578895e4ebc88e4b89188da17947f.zip
removed braces from multilink call, normalized memorystore ref usage per proposal
Diffstat (limited to 'starts/meaning-vm/level0.cpp')
-rw-r--r--starts/meaning-vm/level0.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/starts/meaning-vm/level0.cpp b/starts/meaning-vm/level0.cpp
index fa33d71..6ff0102 100644
--- a/starts/meaning-vm/level0.cpp
+++ b/starts/meaning-vm/level0.cpp
@@ -17,10 +17,10 @@ int main()
ref skip = alloc();
- a.link({
+ a.link(
b, c,
d, e
- });
+ );
e.set(b, a);
c.link(b, e);
a.vset<int>(numlink, 3);