brainfuck icon indicating copy to clipboard operation
brainfuck copied to clipboard

A Brainfuck interpreter running on node.js

Results 4 brainfuck issues
Sort by recently updated
recently updated
newest added

Will send a PR with an example right away :)

You have created an array prototype method `top`. There is little point to this method. ```js if (!Array.prototype.top) { Array.prototype.top = function top() { return this[this.length - 1]; }; }...

E.g. ``` bash $ brainfuck -c '.+[.+]' # execute a brainfuck script directly   !"#$%&'()*+,-./0123456789:;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ # execute a brainfuck file, passing input to the program $ brainfuck...