[Haskell-cafe] problems configuring hs-plugins 1.3.1 in windows

2008-12-11 Thread Alberto G. Corona
I have problems compiling plugins 1.3.1 in windows at the configure phase configure: error C compiler cannot create executables I use ghc 6.8.2 I know that plugins is nor much tested under windows but I´m trying anyway. I think that this problem is very common also in Linux. I tried to find

[Haskell-cafe] Problems with Hs-Plugins

2007-05-05 Thread Philipp Volgger
I tried following very simple program: module Main where import System.Eval.Haskell main = do i - eval 1 + 6 :: Int [] :: IO (Maybe Int) if isJust i then putStrLn (show (fromJust i)) else return () I compile it with ghc -c Main.hs and everything seems fine. When I run it with ghc

Re: [Haskell-cafe] Problems with Hs-Plugins

2007-05-05 Thread Donald Bruce Stewart
pvolgger: I tried following very simple program: module Main where import System.Eval.Haskell main = do i - eval 1 + 6 :: Int [] :: IO (Maybe Int) if isJust i then putStrLn (show (fromJust i)) else return () I compile it with ghc -c Main.hs and everything seems fine. When I run