An open API service indexing awesome lists of open source software.

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

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)