TINGLE 0.9.2  (September 2010)


The file tingle-0.9.2.hs is an interpreter for a little language of
which the novel principles are explained in language.txt, and further
details in prototype.txt.

It can be compiled with the Glasgow Haskell compiler, and uses
version 3 of the Parsec library.  At the time of writing, this version
of Parsec still has to be downloaded and installed separately.  It
can be found at HackageDB (http://hackage.haskell.org/package/parsec)
and installed with the Cabal package manager; or if all else fails,
manually, as follows:

   tar tfzv parsec-3.0.1.tar.gz
   cd parsec-3.0.1
   ghc --make Setup.hs
   ./Setup configure
   ./Setup build
   sudo ./Setup install

Tingle itself is then compiled as follows:

   ghc --make tingle-0.9.2.hs -o tingle

