shaniqua-plugins/testsuite/shell/simple/StringProcessorAPI.hs
2005-09-03 04:45:14 +00:00

9 lines
175 B
Haskell

module StringProcessorAPI where
data Interface = Interface {
stringProcessor :: String -> String
}
plugin :: Interface
plugin = Interface { stringProcessor = id }