diff options
| author | hallgren <hallgren@chalmers.se> | 2014-10-16 15:00:49 +0000 |
|---|---|---|
| committer | hallgren <hallgren@chalmers.se> | 2014-10-16 15:00:49 +0000 |
| commit | 2e2e7acf12c1b84eb1d4f0ac28d120a4d0c4a1c4 (patch) | |
| tree | f0de89cd93e68ea63e4ace685840ef6edf3a44e0 /src/programs | |
| parent | c924491289259fa8a5a259ed97f2d9e817e3338c (diff) | |
Turn the GF compiler into a library. Main program is now in src/programs/gf.hs
The module src/compiler/GF.hs now serves as a prelimiary compiler API. It just
exports a selection of functions and types from the compiler.
Haddock documentation can be generated with
cabal haddock --hyperlink-source
Also bumbed the version number to 3.6.10.
Diffstat (limited to 'src/programs')
| -rw-r--r-- | src/programs/gf.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/programs/gf.hs b/src/programs/gf.hs new file mode 100644 index 000000000..1dae54bc7 --- /dev/null +++ b/src/programs/gf.hs @@ -0,0 +1,3 @@ +import qualified GF + +main = GF.main |
