2009/4/22 michael rice <[email protected]>: > Just exploring. How to load? > > Michael > > [mich...@localhost ~]$ ghci Data.Complex > GHCi, version 6.10.1: http://www.haskell.org/ghc/ :? for help > Loading package ghc-prim ... linking ... done. > Loading package integer ... linking ... done. > Loading package base ... linking ... done. > > <no location info>: module `Data.Complex' is a package module > Failed, modules loaded: none. > Prelude> > > > > _______________________________________________ > Haskell-Cafe mailing list > [email protected] > http://www.haskell.org/mailman/listinfo/haskell-cafe > >
Try ':module + Data.Complex' from within GHCi. (Or 'import Data.Complex' from within a source file, of course.) _______________________________________________ Haskell-Cafe mailing list [email protected] http://www.haskell.org/mailman/listinfo/haskell-cafe
