I'm having trouble getting "hello world" going with eclipseFP and Haskell.
I have the following code,
module Main where
main = putStr "Hello world!"
and when I compile it with
ghc.exe .\H1.hs -o hw.exe
it works fine, but under eclipsePF, when I run it I only see the following in the console window:
GHCi, version 6.10.4: http://www.haskell.org/ghc/ :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer ... linking ... done.
Loading package base ... linking ... done.
Ok, modules loaded: Main.
Prelude Main>
What noob mistake am I making?