Sinisterly
Mindf+ - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: Coding (https://sinister.ly/Forum-Coding--71)
+--- Thread: Mindf+ (/Thread-Mindf)



Mindf+ - phyrrus9 - 01-18-2013

Awhile back I learned Brainfuck, a simple programming language using the following syntax:

+ increment value
- decrement value
> shift right
< shift left
[ jump to ] if value is 0
] jump to [ if value is not 0

well, I made a few changes (rather not like to retype them) to the language that I think might help. I also wrote a compiler (used to ONLY be runtime interpreted) that you can use. Here is the link to the github page: Mindf+

Tell me what you all think!


RE: Mindf+ - w00t - 01-18-2013

But that breaks the unprogrammability ):

The way you compile isn't the best, if you load segments off the source into a char array and step through the variable it will compile considerably faster.


RE: Mindf+ - BreShiE - 01-18-2013

It's weird how I was just discussing with a friend how badly I want to learn this earlier. Haha, well nice job!