DESCRIPTION

This is a Brainfuck interpreter for Parrot. Brainfuck is a full
computer programming language with only eight commands. For more
information, see http://www.catseye.mb.ca/esoteric/bf/

To compile the files:

  $ make

To check that the compiler is working:

  $ make test

To run an example Brainfuck program:

  $ ../../parrot bf.pasm helloworld.bf

Clifford Wolf <clifford (at) clifford.at> contributed a nice bf
program:

  $ cat cw.txt
  $ ../../parrot bf.pasm cw.bf < cw.txt > cw.c
  $ cc -o cw cw.c
  $ ./cw


AUTHOR

Leon Brocard <acme@astray.com>
