aneumann:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: RIPEMD160
> 
> Hi,
> 
> I installed the Network.CGI package and tried to compile the Hello World
> example on my Ubuntu machine.
> 
> >ghc cgi.hs -o cgi

Missing --make to link against the cgi and network and mtl packages.

Also, -O or -O2, you may as well optimise your code :-)

I'd use:

    ghc --make -O cgi.hs -o cgi

-- Don
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to