Problem I have recently written a Brainfuck interpreter in C#. I tested it with the examples given on EsoLang website. […]

Problem I am trying to brute force code Brainfuck code to get the desired output. For this, I need my […]

Problem Given a text, this program will output a Brainfuck program, that when executed will print the text back. Writing […]

Problem Since I have little to no knowledge about native languages, I tried once more to write a simple application […]

Problem After reading this article on writing a Brainfuck interpreter in Haskell and achieving awful performance with it (for example, […]

Problem I recently wrote a simple Brainfuck interpreter in Ruby: require “io/console” $VALID = “+-<>.,” def parse(code, level=0) ast = […]

  • 1
  • 2