Skip to content

Latest commit

 

History

History
59 lines (57 loc) · 2.98 KB

index.md

File metadata and controls

59 lines (57 loc) · 2.98 KB
layout title
default
Arc Programming Language

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.)

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)
$