mu/archive/0.vm.arc
Kartik Agaram 2a4088119c 5852 2020-01-01 17:04:37 -08:00
..
charterm 5852 2020-01-01 17:04:37 -08:00
Readme.md 5852 2020-01-01 17:04:37 -08:00
blocking.arc.t 5852 2020-01-01 17:04:37 -08:00
buffered-stdin.mu 5852 2020-01-01 17:04:37 -08:00
callcc.mu 5852 2020-01-01 17:04:37 -08:00
channel.mu 5852 2020-01-01 17:04:37 -08:00
chessboard.arc.t 5852 2020-01-01 17:04:37 -08:00
chessboard.mu 5852 2020-01-01 17:04:37 -08:00
color-repl.mu 5852 2020-01-01 17:04:37 -08:00
counters.mu 5852 2020-01-01 17:04:37 -08:00
edit.arc.t 5852 2020-01-01 17:04:37 -08:00
edit.mu 5852 2020-01-01 17:04:37 -08:00
exuberant-ctags-rc 5852 2020-01-01 17:04:37 -08:00
factorial.mu 5852 2020-01-01 17:04:37 -08:00
fork.mu 5852 2020-01-01 17:04:37 -08:00
generic.mu 5852 2020-01-01 17:04:37 -08:00
graphics.mu 5852 2020-01-01 17:04:37 -08:00
highlights 5852 2020-01-01 17:04:37 -08:00
load.arc 5852 2020-01-01 17:04:37 -08:00
mu 5852 2020-01-01 17:04:37 -08:00
mu.arc 5852 2020-01-01 17:04:37 -08:00
mu.arc.t 5852 2020-01-01 17:04:37 -08:00
mu.arc.t.html 5852 2020-01-01 17:04:37 -08:00
render.vim 5852 2020-01-01 17:04:37 -08:00
scratch.vim 5852 2020-01-01 17:04:37 -08:00
stdin.mu 5852 2020-01-01 17:04:37 -08:00
tangle.mu 5852 2020-01-01 17:04:37 -08:00
trace.arc.t 5852 2020-01-01 17:04:37 -08:00
trace.mu 5852 2020-01-01 17:04:37 -08:00
vimrc.vim 5852 2020-01-01 17:04:37 -08:00
x.mu 5852 2020-01-01 17:04:37 -08:00

Readme.md

Original prototype, last modified 2015-03-14

First install Racket (just for this prototype; last tested with v6.3). Then:

$ cd mu/archives/1.vm
$ git clone http://github.com/arclanguage/anarki
$ cd anarki
$   git checkout d7290130a7  # last compatible snapshot
$ cd ..
$ ./mu test mu.arc.t  # run tests

Example programs:

$ ./mu factorial.mu  # computes factorial of 5
$ ./mu fork.mu  # two threads print '33' and '34' forever
$ ./mu channel.mu  # two threads in a producer/consumer relationship