Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/andrewn6/bf-haskell
- Owner: andrewn6
- Created: 2021-09-06T15:50:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-16T23:46:27.000Z (over 3 years ago)
- Last Synced: 2024-12-31T07:44:21.869Z (8 days ago)
- Language: Haskell
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)**