plugins-1.3: testsuite/shell/simple/StringProcessorAPI.hs
module StringProcessorAPI where
data Interface = Interface {
stringProcessor :: String -> String
}
plugin :: Interface
plugin = Interface { stringProcessor = id }
module StringProcessorAPI where
data Interface = Interface {
stringProcessor :: String -> String
}
plugin :: Interface
plugin = Interface { stringProcessor = id }