An Unlambda to C compiler written in Haskell.
To build the blamda executable, run the following commands:
cd BLAMda/src
ghc --make -O3 blamda.hs
To compile an unlambda file named 'foo.unl' into a c file named 'foo.c', run the following:
blamda foo.unl foo.c
gcc -O3 foo.c