https://github.com/tetsuo-cpp/brainfuck
An interpreter for the Brainfuck programming language.
https://github.com/tetsuo-cpp/brainfuck
Last synced: 8 months ago
JSON representation
An interpreter for the Brainfuck programming language.
- Host: GitHub
- URL: https://github.com/tetsuo-cpp/brainfuck
- Owner: tetsuo-cpp
- Created: 2019-09-21T01:29:34.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-21T02:04:43.000Z (about 6 years ago)
- Last Synced: 2025-02-05T17:18:10.961Z (10 months ago)
- Language: C++
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Brainfuck
An interpreter written in C++ for everyone's favourite cryptic programming language.
## Usage
This is a CMake project so it can be built with GNU Make or whatever your preferred generator is.
```
cmake . && make
```
The interpreter can be invoked with a path to a Brainfuck source file.
```
./brainfuck
```