diff options
Diffstat (limited to 'docs/wiki_src/introduction/installation.md')
-rw-r--r-- | docs/wiki_src/introduction/installation.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/wiki_src/introduction/installation.md b/docs/wiki_src/introduction/installation.md new file mode 100644 index 0000000..3334ad3 --- /dev/null +++ b/docs/wiki_src/introduction/installation.md @@ -0,0 +1,24 @@ +# Installation + +You first need to install Haskell's +[Stack](https://docs.haskellstack.org/en/stable/) using their official +instructions for your operating system. After that, clone the bruijn +repository using + +``` bash +$ git clone https://github.com/marvinborner/bruijn +$ cd bruijn +``` + +Then, run bruijn using `stack run`{.bash}. This starts bruijn's +[REPL](../coding/REPL.md). You can now play around with bruijn. + +Passing normal arguments to `bruijn`{.bash} with `stack`{.bash} can be +done with `stack run -- [args]`. If you enjoy it, you can install +`bruijn` into your stack path using `stack install`. + +------------------------------------------------------------------------ + +Please create an issue on +[GitHub](https://github.com/marvinborner/bruijn/issues/new) if you +encounter any issues. |