blob: 9a1d46b05ee83fe56dba346c129615354cca45ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module DocsInHiFileTHExternal where
-- |This is an external function
externalFunc :: Int -- ^Some integer
-> Int -- ^Another integer
externalFunc = const 42
-- |This is an external class
class ExternalClass a where
-- |This is an external instance
instance ExternalClass Int where
|