Problem I came up with the following Brainfuck interpreter in Haskell after thinking about how to represent the program and […]
Tag: interpreter
Very simple interpreter
Problem I created a very simple interpreter in Python. It’s capable of doing basic math (unfortunately with only two numbers), […]
TinCan (Esolang) Interpreter in Haskell
Problem Haskell newbie here. Wanted to improve my skills by re-implementing an esolang I designed back in 2011 called TinCan. […]
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. […]
Self-modifying esoteric language interpreter in Ruby
Problem I recently created Copy, an esoteric language, and wrote an implementation in Ruby. The language has only 7 instructions: […]
AST-based Brainfuck interpreter in Haskell
Problem Since implementing my Interactive Brainfuck interpreter in Haskell I figured that it would be a good idea to build […]
Brain Flak implementation in Haskell
Problem I’m a beginner to Haskell and functional programming as a whole and as a first project I’ve written a […]
Abstract syntax tree for simple Lisp-like interpreter
Problem A week or so ago, I wrote a binary expression calculator with the hope of better understanding how interpreters […]
Meta-circular interpreter for lambda calculus in Haskell
Problem For learning purpose, I’ve written a simple lambda calculus interpreter (plus ‘Add’). I would like it to be the […]
Charmander Brainfuck interpreter in Haskell
Problem I just started learning Haskell and this is my first big project (ie not factorials, fibonacci or graphers). This […]