Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/svisser/go-brainfuck
Brainfuck interpreter written in Go
https://github.com/svisser/go-brainfuck
Last synced: 5 days ago
JSON representation
Brainfuck interpreter written in Go
- Host: GitHub
- URL: https://github.com/svisser/go-brainfuck
- Owner: svisser
- License: mit
- Created: 2014-12-29T20:09:14.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-01T22:52:43.000Z (almost 10 years ago)
- Last Synced: 2024-10-10T21:44:35.849Z (26 days ago)
- Language: Go
- Size: 211 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Brainfuck interpreter in Go
## Overview
Brainfuck interpreter written in Go. Written and tested with Go 1.4.
For more information about the Brainfuck programming language, see:
- https://en.wikipedia.org/wiki/Brainfuck
- https://esolangs.org/wiki/BrainfuckThis implementation follows these conventions:
- The data array contains signed 64-bit integers.
- Newlines are expected as a single character ('\n').## Running a Brainfuck program
You can run a program as follows:
go run brainfuck.go -path=samples/hello_world.bf
The program's parameters are:
-path="": path to Brainfuck source
-size=30000: size of the data array