about summary refs log tree commit diff stats
path: root/Readme
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 /Readme
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 'Readme')
-rw-r--r--Readme11
1 files changed, 0 insertions, 11 deletions
diff --git a/Readme b/Readme
index 614b6058..8b554d50 100644
--- a/Readme
+++ b/Readme
@@ -4,15 +4,4 @@ Prerequisites: Racket from http://racket-lang.org
 $ cd mu
 $ git clone http://github.com/arclanguage/anarki
 
-$ cat x.mu
-(main
-  ((x integer) <- literal 1)
-  ((y integer) <- literal 3)
-  ((z integer) <- add (x integer) (y integer))
-)
-
-$ ./anarki/arc mu.arc x.mu
-hash((x . 1) (y . 3) (z . 4))  # state of simulated memory after executing x.mu
-# location z contains the sum of locations x and y
-
 $ ./anark/arc mu.arc.t  # automated tests; start reading here