Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aermoss/brainfuck
A simple BrainFuck interpreter written in Python.
https://github.com/aermoss/brainfuck
brainfuck brainfuck-interpreter esolang esoteric-interpreter esoteric-language interpreter
Last synced: about 2 months ago
JSON representation
A simple BrainFuck interpreter written in Python.
- Host: GitHub
- URL: https://github.com/aermoss/brainfuck
- Owner: Aermoss
- License: mit
- Created: 2022-09-06T00:28:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-23T14:52:29.000Z (11 months ago)
- Last Synced: 2024-02-23T15:51:28.635Z (11 months ago)
- Topics: brainfuck, brainfuck-interpreter, esolang, esoteric-interpreter, esoteric-language, interpreter
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BrainFuck
A simple BrainFuck interpreter written in Python.# Getting Started
## Usage
```
python main.py main.bf
```## Disabling value limits
```
python main.py main.bf --no-limit
```# Examples
## Hello, World!
```
++++++++++[>+++++++>++++++++++>+++>+<<<<-]
>++.>+.+++++++..+++.>>>>++++[>++++++++++<-]>++++.
<<<<<>++.<<+++++++++++++++.>.+++.------.--------.>+.>.
```