about summary refs log tree commit diff stats
path: root/fork.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2014-10-14 17:21:39 -0700
committerKartik K. Agaram <vc@akkartik.com>2014-10-14 17:26:28 -0700
commit2c0a6696a99407cd72b945bb270937dfe130bd48 (patch)
tree370f77c54f4bdd37b38b02dbbf934204090ca476 /fork.mu
parent93ddcc744b91cf1bf3550024e9b8c9fd80c2571b (diff)
downloadmu-2c0a6696a99407cd72b945bb270937dfe130bd48.tar.gz
145 - delete random programs
They need a type table to work, but I'm keeping type tables next to
the tests.

Everything needs to be a test from now on.

(But first some fixes to the terminal primitives.)
Diffstat (limited to 'fork.mu')
-rw-r--r--fork.mu12
1 files changed, 0 insertions, 12 deletions
diff --git a/fork.mu b/fork.mu
deleted file mode 100644
index 42f1956b..00000000
--- a/fork.mu
+++ /dev/null
@@ -1,12 +0,0 @@
-(main
-  (fork (thread2 fn))
-  ((1 integer) <- literal 34)
-  (print (1 integer))
-  (jmp (-2 offset))
-)
-
-(thread2
-  ((2 integer) <- literal 35)
-  (print (2 integer))
-  (jmp (-2 offset))
-)