Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 247 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 247 Bytes

go-brainfuck

This is a brainfuck interpreter that I'm writing for fun.

Build

To build:

go build -o main

Run

To run:

./main SOME_BF_FILE

Lint

To lint:

gofmt -w .

Test

To test:

go test ./...