https://github.com/mcriley821/brainfuck
https://github.com/mcriley821/brainfuck
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mcriley821/brainfuck
- Owner: mcriley821
- Created: 2022-10-15T17:09:58.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-02T04:39:34.000Z (over 2 years ago)
- Last Synced: 2025-02-07T22:49:25.276Z (4 months ago)
- Language: C++
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A simple brainfuck interpreter in C++20.
## Build
Just run make:
```{.sh}
make
```## Run
To run, execute the interpreter binary:
```{.sh}
./brainfuck
```
Use the `-h` or `--help` option to see options.## Testing
Testing the interpeter code is as simple as building and running the test module:
```{.sh}
make tests
./run_tests
```## Dependencies
This interpreter was built using:
+ clang version 15.0.2
+ boost 1.80