https://github.com/purefunctor/fungoid
Befunge-93 interpreter written in Haskell!
https://github.com/purefunctor/fungoid
Last synced: 4 months ago
JSON representation
Befunge-93 interpreter written in Haskell!
- Host: GitHub
- URL: https://github.com/purefunctor/fungoid
- Owner: purefunctor
- License: mit
- Created: 2020-06-19T08:21:47.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-04T11:39:03.000Z (almost 5 years ago)
- Last Synced: 2025-06-11T00:05:19.207Z (about 1 year ago)
- Language: Haskell
- Size: 34.2 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Fungoid
Befunge-93 interpreter written in Haskell!
# Requirements
This project requires `GHC 8.8.4` and can be built using either `cabal` or `stack`.
# Installation
```bash
λ> git clone https://github.com/PureFunctor/Fungoid.git
λ> cd Fungoid
λ> [cabal | stack] install
```
# Examples
In order to run examples obtained from the [esolangs wiki](https://esolangs.org/wiki/Befunge):
```bash
λ> [cabal | stack] run Fungoid -- b93/helloworld.b93 93
λ> [cabal | stack] run Fungoid -- b93/factorial.b93 93
```
# Nix
Alternatively, it can also be built using `nix`.
```bash
λ> nix build
λ> ./result/bin/Fungoid b93/helloworld.b93 93
λ> ./result/bin/Fungoid b93/factorial.b93 93
```