forked from abhin4v/goa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
executable file
·86 lines (59 loc) · 1.87 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
GOA ~~ GHCi On Acid
===================
This set of tools is an attempt to bring the wonderful world of lambdabot
commands to the GHC interpreter for ease of use.
The set of commands carefully developed in lambdabot during the years has
become a very useful tool for haskellers. For some it is like an addiction.
Installation
------------
-- Add the path to lambdabot's directory to dot-ghci
$ vi dot-ghci
-- Build
$ chmod +x Setup.hs
$ ./Setup.hs configure --prefix=/home/dons
$ ./Setup.hs build
$ ./Setup.hs install
-- Add dot-ghci to your default ghci setup. Change setLambdabotHome
-- according to where your lambdabot is.
$ cat dot-ghci >> ~/.ghci
Use
---
$ ghci
Fun
Prelude GOA> :bs
:)
Pointfree refactoring
Prelude GOA> :pl \f x y -> x * y
const (*)
Search for functions
Prelude GOA> :index const
Prelude
Search for documentation
Prelude GOA> :docs Prelude
http://haskell.org/ghc/docs/latest/html/libraries/base/Prelude.html
Find source
Prelude GOA> :source Prelude
http://darcs.haskell.org/packages/base/Prelude.hs
Search by name
Prelude GOA> :hoogle const
Prelude.const :: a -> b -> a
Search by type
Prelude GOA> :hoogle a -> [a] -> a
Prelude.foldl :: (a -> b -> a) -> a -> [b] -> a
Prelude.foldr :: (a -> b -> b) -> b -> [a] -> b
Data.List.foldl' :: (a -> b -> a) -> a -> [b] -> a
Extending
---------
Define new commands with:
:def command lambdabot "lambdabot-command-name"
Documentation
-------------
The documentation ought to be compliant with the specification of
khjk-structured-text by Sven Moritz Hallberg <http://www.khjk.org/~sm/>.
Dependencies
------------
[Lambdabot]: <http://www.cse.unsw.edu.au/~dons/lambdabot/>.
[khjk-structured-text]: If you want to produce HTML documentation.
Additional Fun
--------------
Look in fcgi for a fastcgi binding for lambdabot.