about summary refs log tree commit diff stats
path: root/archive/2.vm/fork.mu
diff options
context:
space:
mode:
Diffstat (limited to 'archive/2.vm/fork.mu')
-rw-r--r--archive/2.vm/fork.mu16
1 files changed, 0 insertions, 16 deletions
diff --git a/archive/2.vm/fork.mu b/archive/2.vm/fork.mu
deleted file mode 100644
index af414cf2..00000000
--- a/archive/2.vm/fork.mu
+++ /dev/null
@@ -1,16 +0,0 @@
-# example program: running multiple routines
-
-def main [
-  start-running thread2
-  {
-    $print 34
-    loop
-  }
-]
-
-def thread2 [
-  {
-    $print 35
-    loop
-  }
-]