Problem I came up with the following Brainfuck interpreter in Haskell after thinking about how to represent the program and […]
Tag: brainfuck
BF interpreter written in C#
Problem I have recently written a Brainfuck interpreter in C#. I tested it with the examples given on EsoLang website. […]
Brainfuck Brute Force
Problem I am trying to brute force code Brainfuck code to get the desired output. For this, I need my […]
Reverse multiple strings separated by comma
Problem Recently I did a lot of practice problems in brainfuck to learn better about how to use it (and […]
Brainfuck Printer Generator
Problem Given a text, this program will output a Brainfuck program, that when executed will print the text back. Writing […]
Brainfuck parser
Problem Since I have little to no knowledge about native languages, I tried once more to write a simple application […]
Brainfuck interpreter in JavaScript, take 2
Problem The previous version is here. This version takes suggestions from that review into account: brainfuck is now an object […]
Brainfuck to NASM compiler in Haskell
Problem After reading this article on writing a Brainfuck interpreter in Haskell and achieving awful performance with it (for example, […]
A beginner’s brainfuck interpreter in Haskell
Problem I am rather new to haskell, and could use some feedback on my code and the decisions I had […]
Ruby Brainfuck interpreter
Problem I recently wrote a simple Brainfuck interpreter in Ruby: require “io/console” $VALID = “+-<>.,” def parse(code, level=0) ast = […]
- 1
- 2