blob: 023e2ea05db05cab3a96a19ba1bb6eda0564f0e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
module AddLocalDecl1 where
-- |This is a function
foo = x -- comment1
where
nn = 2
-- trailing 1
-- |Another fun
x = a -- comment2
where
a = 3
-- trailing 2
y = 3
|