2005-09-03 04:45:14 +00:00

11 lines
148 B
Haskell

module API where
data Interface = Interface {
function :: String
}
plugin :: Interface
plugin = Interface { function = "goodbye" }