This is a small Brainf*ck interpreter made to try out odin-lang
You need the Odin compiler to build this. When that is installed, clone this repo:
$ git clone https://github.com/AtleSkaanes/obfThen build it like this:
$ cd obf
$ odin build ./src -out:obfCreate a file with the brainf*ck code you want to run. An example could be this Hello World code:
>++++++++[<+++++++++>-]<.>++++[<+++++++>-]<+.+++++++..+++.>>++++++[<+++++++>-]<+
+.------------.>++++++[<+++++++++>-]<+.<.+++.------.--------.>>>++++[<++++++++>-
]<+.Then to run it, just give the path to the program, as its first argument
$ obf [FILE]