Update examples to use new module names

This commit is contained in:
Don Stewart
2005-05-15 06:03:55 +00:00
parent cfae954a22
commit 63717dc07c
94 changed files with 97 additions and 109 deletions

View File

@ -1,7 +1,7 @@
module Plugin where
import API
import AltData
import AltData.Dynamic
my_fun = plugin {
equals = \x y -> (x /= y) -- a strange equals function :)

View File

@ -2,7 +2,7 @@
module API where
import AltData
import AltData.Typeable
data Interface = Interface {
equals :: forall t. Eq t => t -> t -> Bool

View File

@ -2,7 +2,7 @@
#include "../../../../config.h"
import Plugins
import System.Plugins
import API
main = do