Example program for 'unloadAll'.

This commit is contained in:
lemmih
2005-05-19 03:23:30 +00:00
parent fc58e81ed6
commit 7dbaf7fe88
6 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{-# OPTIONS -fglasgow-exts #-}
module API where
import Data.Dynamic
data Null = Null { a, b :: Int }
deriving (Typeable, Show)
null :: Null
null = Null { a = 42 , b = 1 }