2005-04-24 08:51:33 +00:00

16 lines
156 B
Haskell

--
-- A simple module
--
module Modules.Flags where
data FlagRec = FlagRec {
f1 :: Int,
f2 :: Int
}
foo :: FlagRec -> Int
foo x = f1 x