blob: 7e318d79ae02256be38d075582e3ca3c302ead83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
:l shell.hs
:def shell (\s -> do shell s; return "")
:set -v1 -i -i. -ib -fhide-source-paths
:shell mkdir b
:shell echo "module B where b = 0" > b/B.hs
:l B
:shell echo "module B where" > B.hs
:reload
|