Anarki Stable

Minor improvements to Arc 3.2

To install, first install git and racket, and then:
$ git clone http://github.com/arclanguage/anarki
$ cd anarki
$ git checkout stable
$ ./arc.sh
arc> (quit)
$
(Official instructions.)

Anarki

A 'wiki-like' community-supported fork of Arc

To install, first install git and racket (v7.7 or greater), and then:
$ raco pkg install sha
$ git clone http://github.com/arclanguage/anarki
$ cd anarki
$ ./arc.sh
arc> (help do)  ; online help
[mac] (do . args)
Evaluates each expression in sequence and returns the result
of the last expression.
arc> (load "tests.arc")  ; lots of automated tests
arc> (quit)
$