Skip to content

Gael-Lopes-Da-Silva/Brainfuck

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Brainfuck interpreter

🗒️ This is my own implementation of the brainfuck programming language in Go.

❓ How to use

brainfuck your_file.b
brainfuck --version    or -v      # Print the interpreter version
brainfuck --github     or -g      # Give the GitHub link
brainfuck --interpret  or -i      # Input directly a string to interpret

❓ How to build

❗ To build the interpreter you will first need to download the Go compiler here.

If you want a precompiled executable, run this.

go install github.com/gael-lopes-da-silva/brainfuck@latest

If you want to build the interpreter from the source, run this.

git clone https://github.com/Gael-Lopes-Da-Silva/Brainfuck
cd Brainfuck
go build .