9 lines
135 B
Haskell
9 lines
135 B
Haskell
|
module API where
|
||
|
|
||
|
data Test = Test {
|
||
|
field :: String
|
||
|
}
|
||
|
|
||
|
test :: Test
|
||
|
test = Test { field = "default value" }
|