Skip to content

Get Started

LucasMW edited this page Dec 7, 2017 · 8 revisions

Get Started

First you may set the environment:


Get a brainfuck interpreter Headache requires a brainfuck interpreter. A custom brainfuck interpreter is bundled with HAC, but you can get any 8 bit interpreter to run the output code.


Get HAC (HeadAche Compiler).

  • Download HAC

See Releases section for more information

or

  • Clone and Build Headache

See Building Headache for more details


Set hac in your shell and test it.

void main() {
   @"Hello World!\n";
}

$ hac hello.ha

$./bfi ./a.out

Hello World!

$

If those were your results everything should be working

Clone this wiki locally