Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andrewn6/bf-haskell

🧠 Brainfuck interpreter written in Haskell.
https://github.com/andrewn6/bf-haskell

Last synced: 6 days ago
JSON representation

🧠 Brainfuck interpreter written in Haskell.

Awesome Lists containing this project

README

        

A brain fuck intepreter, written in haskell as a begginer project. 🧠

## How to run
- Step 1: ghc bf.hs
- Step 2: ./bf

## Rules/Conditionals
- ">" move cell pointer forward
- < move cell pointer backward
- "+" increment current cell
- "-" decrement current cell
- , take a character as input and assign to current cell
- . output character value of current cell
- [ start loop
- ] end loop if current cell is zero

## 👥 Contributors

- **[@notandrewdev](https://github.com/notandrewdev)**