1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
{- -*- Mode: haskell; -*-
Haskell Magic Interface
Copyright (C) 2005 John Goerzen <jgoerzen@complete.org>
This code is under a 3-clause BSD license; see COPYING for details.
-}
{- |
Module : Magic
Copyright : Copyright (C) 2005 John Goerzen
License : BSD
Maintainer : John Goerzen,
Maintainer : jgoerzen\@complete.org
Stability : provisional
Portability: portable
Top-level Magic module.
Written by John Goerzen, jgoerzen\@complete.org
Foo bar
-}
module Magic (-- * Basic Types
module Magic.Types,
-- * Initialization
module Magic.Init,
-- * Operation
module Magic.Operations
)
where
import Magic.Types
import Magic.Init
import Magic.Operations
|