https://github.com/purefunctor/fungoid
Befunge-93 interpreter written in Haskell!
https://github.com/purefunctor/fungoid
Last synced: about 1 month 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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-04T11:39:03.000Z (over 3 years ago)
- Last Synced: 2025-01-25T04:44:48.934Z (3 months ago)
- Language: Haskell
- Size: 34.2 KB
- Stars: 3
- 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
```