https://github.com/nomad-software/bfg
A fast Brainfuck interpreter and compiler written in the Go programming language
https://github.com/nomad-software/bfg
brainfuck brainfuck-interpreter go golang
Last synced: 4 months ago
JSON representation
A fast Brainfuck interpreter and compiler written in the Go programming language
- Host: GitHub
- URL: https://github.com/nomad-software/bfg
- Owner: nomad-software
- License: mit
- Created: 2016-09-08T19:31:14.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2025-04-04T17:14:50.000Z (about 1 year ago)
- Last Synced: 2025-06-13T00:02:15.114Z (about 1 year ago)
- Topics: brainfuck, brainfuck-interpreter, go, golang
- Language: Brainfuck
- Homepage:
- Size: 184 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bfg
**A fast Brainfuck interpreter and compiler written in the Go programming language.**
---
## Overview
Brainfuck is an esoteric programming language noted for its extreme minimalism. The language consists of only eight simple commands and an instruction pointer. It is designed to challenge and amuse programmers, and was not made to be suitable for practical use. It was created in 1993 by Urban Müller. [See wikipedia page.](https://en.wikipedia.org/wiki/Brainfuck)
### Usage
Brainfuck programs can be specified by specifing the `-f` switch.
```
bfg -f program.bf
```
See help for more information about the included compilers and evaluator.
```
bfg -help
```