Re: [wxhaskell-users] bus error

2007-02-16 Thread Doaitse Swierstra
ad 1) It has been pointed out to me that you can call the enableGUI >> main only once; otherwise you get the problem I had ad 2) I made a mistake in thinking that the a.out would always be used. So bad reading of the instructions from my side. Sorry. Doaitse On Feb 16, 2007, at 1:40 PM,

[wxhaskell-users] bus error

2007-02-16 Thread Doaitse Swierstra
When trying to run even the smallert wx program in my Mac OS X 10.4, Intel: module Main where import Graphics.UI.WX import EnableGUI main :: IO () main = start hello hello :: IO () hello = do f<- frame[text := "Hello!"] quit <- button f [text := "Quit", on command := close