blob: 5efbb2ee342299cb738693052d8db61eb368216d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module T16288C where
data Doc = Empty | Beside Doc
hcat :: Doc -> Doc
hcat Empty = Empty
hcat xs = hcat xs
pretV = hcat Empty
foo :: Doc -> Doc
foo Empty = hcat Empty
foo val = Beside val
|