[project @ 2003-07-22 16:18:06 by simonmar]
[ghc-hetmet.git] / ghc / tests / ghci / prog001 / C.hs
1 module C (f, g, h) where
2
3 import D
4  
5 g x = f x + 1
6
7 h x = x `div` 2
8
9 data C = C {x :: Int}