Befunge-93 interpreter written in Haskell!
This project requires GHC 8.8.4
and can be built using either cabal
or stack
.
λ> git clone https://github.com/PureFunctor/Fungoid.git
λ> cd Fungoid
λ> [cabal | stack] install
In order to run examples obtained from the esolangs wiki:
λ> [cabal | stack] run Fungoid -- b93/helloworld.b93 93
λ> [cabal | stack] run Fungoid -- b93/factorial.b93 93
Alternatively, it can also be built using nix
.
λ> nix build
λ> ./result/bin/Fungoid b93/helloworld.b93 93
λ> ./result/bin/Fungoid b93/factorial.b93 93