9 lines
135 B
Haskell
Raw Normal View History

2005-04-24 08:51:33 +00:00
module API where
data Test = Test {
field :: String
}
test :: Test
test = Test { field = "default value" }