2005-09-03 04:45:14 +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