Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/g-berthiaume/urbanmi
A simple brainfuck language interpreter written in C11.
https://github.com/g-berthiaume/urbanmi
Last synced: 2 months ago
JSON representation
A simple brainfuck language interpreter written in C11.
- Host: GitHub
- URL: https://github.com/g-berthiaume/urbanmi
- Owner: g-berthiaume
- License: unlicense
- Created: 2019-03-07T23:40:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-11T16:50:19.000Z (almost 6 years ago)
- Last Synced: 2024-04-24T16:15:08.281Z (9 months ago)
- Language: C
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeInterpreter - urbanmi
README
# urbanmi
A simple [brainfuck language](https://en.wikipedia.org/wiki/Brainfuck) interpreter written in C11.
### Purpose
Noting serious.
I'm trying to refresh my C. An _etude_ as Peter Norvig would say.### How to use urbanmi
You can build the interpreter and execute `.bf` script as follows:
```bash
$ make
$ build/urbanmi examples/hello.bf
Hello World!
```
Notes: You can find brainfuck script examples in the examples/ directory.### About the name
The language was created by Urban Müller.
☞ urban m[uller] i[terpreter]### Liscence
This is free and unencumbered software released into the public domain.
See the LISCENCE file for more information.----
```
----[-->+++++<]>-.---.++++[->+++<]>.-.+++++++++++++.-.----.----[->+++<]>-.--[--->+<]>-.[--->+<]>-.-[--->++<]>-.++++++++++.+[---->+<]>+++.[->+++<]>+.+[--->+<]>+.[->+++<]>.[--->+<]>----.----.--.--------.-[->+++<]>.------------.[->+++<]>+.+++++++++++++.----------.-[--->+<]>-.---[->++++<]>-.----.[--->+<]>-----.[->+++<]>+.--[--->+<]>---.-------------.--[--->+<]>-.--[->++++<]>+.----------.++++++.-[++>---<]>.
```