BrainFuck Optimizing JIT

from blog danangell.com/blog, | ↗ original
What is BrainFuck? BrainFuck is an esoteric programming language designed specifically to be easy to compile. The environment provides the programmer with an “infinite” array of bytes (traditionally just 30,000) and a data pointer. There are only 8 single character commands: + : Increment the current memory cell by 1 (with wrapping overflow) - :...