Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dantecatalfamo/brainfuck-zig
Brainfuck interpreter written in zig
https://github.com/dantecatalfamo/brainfuck-zig
brainfuck brainfuck-interpreter zig
Last synced: about 2 months ago
JSON representation
Brainfuck interpreter written in zig
- Host: GitHub
- URL: https://github.com/dantecatalfamo/brainfuck-zig
- Owner: dantecatalfamo
- License: mit
- Created: 2021-11-27T02:51:06.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-03T20:11:22.000Z (about 1 year ago)
- Last Synced: 2024-11-15T09:43:26.559Z (about 2 months ago)
- Topics: brainfuck, brainfuck-interpreter, zig
- Language: Zig
- Homepage:
- Size: 10.7 KB
- Stars: 9
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-zig - brainfuck-zig🗒️Brainfuck interpreter written in zig
README
# Brainfuck-zig
Embeddable zig brainfuck interpreter.
## Usage
`usage: brainfuck [-e expression] [file path]`
## Embedding
```zig
const interpreter = @import("brainfuck-zig/src/main.zig").interpreter;try interpret(program_string, reader, writer, error_writer);
```