public
Description: arc in java
Homepage:
Clone URL: git://github.com/conanite/rainbow.git
name age message
file LICENSE.txt Loading commit data...
file README
file build.xml
directory lib/ Thu May 29 14:34:33 -0700 2008 progress on java interface [conan]
file rainbow.iml Mon Jan 05 06:31:49 -0800 2009 faster symbol lookup [conan]
file rainbow.ipr Mon Mar 30 13:42:57 -0700 2009 Use "PI" instead of greek symbol for the number... [conan]
file rainbow.sh
directory src/
To download and build rainbow:

  git clone git://github.com/conanite/rainbow.git
  cd rainbow
  ant jar
  cd src/arc

Open a REPL

  java -server -jar rainbow.jar

Open welder.arc in welder:

  java -server -jar rainbow.jar -e '(welder "src/arc/rainbow/welder.arc")'

Play tetris:

  java -server -jar rainbow.jar -e '(tetris)' 

Command-line options:
  --strict-arc              # don't include anarki-compatible extensions
  -f file1 ... fileN        # evaluate each file
  -e '(arc axpr)'           # evaluate arc expr (after having evaluated -f, if specified)
  -args a b c               # sets "*argv*" in the arc environment to (a b c). This option, if present, must be 
  specified last.