
11 Nov
2002
11 Nov
'02
7:38 p.m.
I am new to Haskell and GHC and am using a tutorial that I found on the Web to learn. In the tutorial it says that a command like this can be used to build an executable (Windows): ghc --make test.hs -o test.exe The compiler had no complaints and output 2 files: Main.hi and test.o This is the code I was attempting to compile: module Main where main = putStrLn "Hello World." I also tried using: ghc --make test.hs and got the same result. Sorry for such a lame question. Regards Chris Saunders chris.saunders.@sympatico.ca