18 lines
767 B
Plaintext
18 lines
767 B
Plaintext
|
===============================================================================
|
||
|
BRAINFUCK AHEAGO
|
||
|
===============================================================================
|
||
|
|
||
|
A simple lisp implementation of Brainfuck.
|
||
|
Currently can work with simpler programs; but for now, it's still sorta
|
||
|
fragile.
|
||
|
|
||
|
> (bf-aheago:interpret #p"examples/hello_world.bf" :tape-length 5)
|
||
|
|
||
|
|
||
|
————————————————————————————————————————
|
||
|
BORING STUFF
|
||
|
————————————————————————————————————————
|
||
|
License is the CC0 (public domain, effectively)
|
||
|
Author is Jaidyn Ann <jadedctrl@teknik.io>
|
||
|
Sauce is at https://git.eunichx.us/bf-aheago.git
|