We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07efcc7 commit 220bffdCopy full SHA for 220bffd
courseworks/2-Genetic/README.md
@@ -1,5 +1,7 @@
1
# Installing dependencies
2
3
+## `random`
4
+
5
Note that `System.Random` is ultimately using Haskell functions
6
to implement the `IO` randomness. To compile the project, you'll
7
need to have the Haskell `random` library installed. It should
@@ -9,3 +11,15 @@ terminal:
9
11
```shell
10
12
cabal install --lib random
13
```
14
15
16
+## `text`
17
18
+Similarly, the `String` manipulating primitives are implemented
19
+in terms of Haskell functions and so you will need `text` installed.
20
+It should be possible to do it by invoking the following command
21
+from the terminal:
22
23
+``shell
24
+cabal install --lib text
25
+```
0 commit comments