Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schiermike/brainfuck-tools
A simple Brainfuck interpreter and a C to Brainfuck compiler
https://github.com/schiermike/brainfuck-tools
Last synced: 2 months ago
JSON representation
A simple Brainfuck interpreter and a C to Brainfuck compiler
- Host: GitHub
- URL: https://github.com/schiermike/brainfuck-tools
- Owner: schiermike
- License: lgpl-3.0
- Created: 2012-09-08T04:27:12.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-09-08T05:36:42.000Z (over 12 years ago)
- Last Synced: 2024-04-24T16:15:30.489Z (9 months ago)
- Language: C
- Size: 87.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- AwesomeInterpreter - brainfuck-tools
README
Brainfuck Tools
===============I wrote these tools just for fun to make the (admittedly rather pointless) task of writing brainfuck code a bit easier.
[Here's a link ](http://www.spoj.pl/problems/classical/all/lang=BF) to a couple of problems if you feel the need to dig into brainfuck.
I also added two examples:
* **crypto2.bf**: adding 1 to a number of at most three digits, related to [this](http://www.spoj.pl/problems/CRYPTO2/) task.
* **substr1.bf**: Given two binary strings, A (of length 10) and B (of length 5), output 1 if B is a substring of A and 0 otherwise. Related to [this](https://www.spoj.pl/problems/SBSTR1/) task.