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

10 lines
144 B
Haskell

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