10 lines
147 B
Haskell
Raw Permalink Normal View History

2005-04-24 08:51:33 +00:00
module API where
data Interface = Interface {
function :: forall a. a -> a
}
plugin :: Interface
plugin = Interface { function = id }