summaryrefslogtreecommitdiff
path: root/src/runtime/haskell-bind/README.md
diff options
context:
space:
mode:
authorJohn J. Camilleri <john@digitalgrammars.com>2020-07-28 22:36:49 +0200
committerJohn J. Camilleri <john@digitalgrammars.com>2020-07-28 22:36:49 +0200
commitf00f0cb0ef46d1a203e9d4ac238ec1a2e867fd51 (patch)
treecfff738a91e5b211dca0b21f4ba3e950118668e3 /src/runtime/haskell-bind/README.md
parent22d5f31d7450722e45abe07474469c1e3838fce2 (diff)
Bump pgf2 to 1.2.0
Diffstat (limited to 'src/runtime/haskell-bind/README.md')
-rw-r--r--src/runtime/haskell-bind/README.md17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/runtime/haskell-bind/README.md b/src/runtime/haskell-bind/README.md
index a4ce0ef20..f136ad2da 100644
--- a/src/runtime/haskell-bind/README.md
+++ b/src/runtime/haskell-bind/README.md
@@ -1,6 +1,6 @@
# PGF2
-This is a Haskell binding to the PGF runtime in C.
+This is a Haskell binding to the PGF runtime written in C.
The exposed modules are:
@@ -9,18 +9,19 @@ The exposed modules are:
## How to compile
-```
-cabal install
-```
-
**Note:** you must have the PGF C runtime already installed and available.
See <https://github.com/GrammaticalFramework/gf-core/blob/master/src/runtime/c/INSTALL>
+Once the runtine is installed, you can use:
+
+```
+cabal install pgf2
+```
+
## How to use
-Import PGF to the Haskell program that you're writing.
-The Cabal infrastructure will make sure to tell the compiler
-where to find the relevant modules.
+Simply import `PGF2` in your Haskell program.
+The Cabal infrastructure will make sure to tell the compiler where to find the relevant modules.
## Example