shaniqua-plugins/testsuite/shell/simple/StringProcessorAPI.hs

9 lines
175 B
Haskell
Raw Permalink Normal View History

2005-04-24 08:51:33 +00:00
module StringProcessorAPI where
data Interface = Interface {
stringProcessor :: String -> String
}
plugin :: Interface
plugin = Interface { stringProcessor = id }