blob: 3334ad3c9f0908eaa7d76941af4732631a2cfa3d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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.
|