Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivan-bocharov/brainfuck.jl
https://github.com/ivan-bocharov/brainfuck.jl
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/ivan-bocharov/brainfuck.jl
- Owner: ivan-bocharov
- License: mit
- Created: 2015-10-16T14:02:40.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-28T17:08:59.000Z (about 9 years ago)
- Last Synced: 2023-08-03T01:23:39.325Z (over 1 year ago)
- Size: 164 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Brainfuck.jl
It is a simple Brainfuck interpreter written in Julia. Why? Because we can!
While developing the interpreter, I'll be using the table below.
Brainfuck command | C equivalent
--------- | ------------
(Program Start) | char array[infinitely large size] = {0};
| char \*ptr=array;
> | ++ptr;
< | --ptr;
\+ |++\*ptr;
- |--\*ptr;
. |putchar(\*ptr);
, |\*ptr=getchar();
[ |while (\*ptr) {
] |}