blob: 064d660d14a4ac606c478f0bccdafe48b74ad949 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
:set -XOverloadedStrings
:set -XOverloadedLists
:set -XScopedTypeVariables
:set -XPackageImports
:set +t
:set +m
:set -ddump-deriv
-- :set -fprint-explicit-foralls
-- Colour
:set -package funnyprint
:set -interactive-print=FunnyPrint.funnyPrintC
:set prompt "\ESC[1;32mλ: \ESC[m"
:set prompt-cont "\ESC[1;32m : \ESC[m"
-- useful extensions by default
:set -XTypeApplications -XKindSignatures
import Prelude
|