Re: Visual Haskell's Hello, World

2007-01-03 Thread Esa Ilari Vuokko
Hi Bill, On 1/2/07, Bill Mill <[EMAIL PROTECTED]> wrote: It seems trivial, but I think the contents of main.hs in the Visual Haskell default project should include a getChar: module Main where main = do putStrLn "Hello, world!" getChar The first thing a user is going to do on

Re: Visual Haskell's Hello, World

2007-01-02 Thread Neil Mitchell
Hi Bill, It seems trivial, but I think the contents of main.hs in the Visual Haskell default project should include a getChar: Then people will wonder why their app has stopped, and get very confused. A much better solution would be for GHC in Visual Studio to pause at the end of a console ap

Visual Haskell's Hello, World

2007-01-02 Thread Bill Mill
It seems trivial, but I think the contents of main.hs in the Visual Haskell default project should include a getChar: module Main where main = do putStrLn "Hello, world!" getChar The first thing a user is going to do on installation is hit the "build and execute" button, and the