plugins-1.0: 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 }