Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/10sr/brainfxxker
Interactive brainfxxk
https://github.com/10sr/brainfxxker
Last synced: about 2 months ago
JSON representation
Interactive brainfxxk
- Host: GitHub
- URL: https://github.com/10sr/brainfxxker
- Owner: 10sr
- Created: 2013-04-27T18:12:42.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-01T08:46:47.000Z (about 10 years ago)
- Last Synced: 2023-03-11T10:42:34.880Z (almost 2 years ago)
- Language: Python
- Homepage:
- Size: 227 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Brainfxxker
===========A [Brainfxxk](http://en.wikipedia.org/wiki/Brainfuck) machine with an interactive interface.
Synopsis
--------bf [-h] [-i] [-c string] [filename]
Options
-------Without any argument, bf runs in interactive mode. If one argument given,
commands are read from that file.### `-i`
Run in interactive mode even if `-c` or filenames is given.
### `-c `
Run string as commands.
Special commands for interactive mode
-------------------------------------### `q`
Quit immediately.
### `h`
Show help.
### `A`
Toggle if always print memory status.
### `I`
Toggle if always print instruction array status.
### `a`
Print current memory status.
### `i`
Print current instruction array status.
### `p`
Print current status of memory and instrution array.
Inputs
------When not in interactive mode and commands are given from a file or `-c` option,
bf accept input normally: read stdin until EOF.