about summary refs log tree commit diff stats
path: root/fork.mu
diff options
context:
space:
mode:
Diffstat (limited to 'fork.mu')
-rw-r--r--fork.mu10
1 files changed, 2 insertions, 8 deletions
diff --git a/fork.mu b/fork.mu
index 1e3bac99..3917120f 100644
--- a/fork.mu
+++ b/fork.mu
@@ -1,20 +1,14 @@
 recipe main [
   start-running thread2:recipe
-  default-space:address:array:location <- new location:type, 2:literal
-  x:integer <- copy 34:literal
   {
-    $print x:integer, [
-]
+    $print 34:literal
     loop
   }
 ]
 
 recipe thread2 [
-  default-space:address:array:location <- new location:type, 2:literal
-  y:integer <- copy 35:literal
   {
-    $print y:integer, [
-]
+    $print 35:literal
     loop
   }
 ]