Skip to content

ivan-bocharov/Brainfuck.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

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) { ] |}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published