/
README
1 Pointless Haskell
2
3 This cabal package can be installed with:
4
5 $ cabal install pointless-haskell
6
7 For a manual install, execute:
8
9 $ runhaskell Setup.lhs configure
10 $ runhaskell Setup.lhs build
11 $ runhaskell Setup.lhs install
12
13 You can now start playing with the example code that comes with the library, under Language.Pointless.Examples.
14 The easiest way is to create a new module that imports some library modules
15
16 module Test where
17
18 import Generics.Pointless.Examples.Examples
19 import Generics.Pointless.Examples.Observe
20
21 and interpret it
22
23 $ ghci Test.hs
24 > factHylo 5
25 120
26 > runO $ print $ factHyloO 5
27 120
28 ...
29