https://github.com/qalle2/qbf
Brainfuck interpreter in QBasic
https://github.com/qalle2/qbf
brainfuck dos esoteric-language interpreter qbasic
Last synced: 9 days ago
JSON representation
Brainfuck interpreter in QBasic
- Host: GitHub
- URL: https://github.com/qalle2/qbf
- Owner: qalle2
- License: gpl-3.0
- Created: 2019-04-22T00:54:44.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2021-08-23T23:18:06.000Z (over 4 years ago)
- Last Synced: 2025-03-08T06:42:10.173Z (about 1 year ago)
- Topics: brainfuck, dos, esoteric-language, interpreter, qbasic
- Language: BASIC
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# qbf
Brainfuck interpreter in QBasic.
* Reads the Brainfuck program from a file.
* The screen background turns **blue** when the Brainfuck program is expecting input.
* Output:
* Prints characters `0x20`–`0x7e` verbatim.
* Interprets `0x0a` (the Unix newline) as a newline.
* Prints all other characters as `?`.
## References
* [Esolang – Brainfuck](http://esolangs.org/wiki/brainfuck)
* [Wikipedia – Brainfuck](http://en.wikipedia.org/wiki/Brainfuck)