blob: 6fb0482a15724e3cd417388c755491432ad87bcd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
-- | "Deep" doc.
module Deep (deep_lib) where
-- | 'deep_lib' doc.
#if __GLASGOW_HASKELL__ >= 700
#ifndef _INTERNAL_HSC_DO_NOT_DEFINE_ME
deep_lib :: Int
deep_lib = 100
#endif
#endif
|