??? <CADkALSHpG7s89tT7rXJw56q7hkDyEcwv1=xu5Tg3_qLqoqtDxg at mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1" Hi, today I downloaded the Haskell platform for 32 bits Windows (HaskellPlatform-2013.2.0.0-setup.exe) and installed it. The first time I started GHCI all worked perfectly. When I closed GHCI and later tried to start it again I constantly get however: C:\Users\Arie>ghci GHCi, version 7.6.3: http://www.haskell.org/ghc/??:? for help Loading package ghc-prim ... linking ... done. Loading package integer-gmp ... linking ... done. Loading package base ... ghc.exe: : Kan opgegeven module niet vinden. <command line>: can't load .so/.DLL for:? (addDLL: could not load DLL) WHERE Kan opgegeven module niet vinden MEANS Can't find the specified module Any ideas? Kind regards, ???Arie
From franco00 at gmx.com Tue Oct 8 20:30:44 2013 From: franco00 at gmx.com (Franco) Date: Tue, 8 Oct 2013 22:30:44 +0200 Subject: [Haskell-beginners] Javascript with Haskell Message-ID: <20131008203044.GA10796@efikamx> X-List-Received-Date: Sat, 12 Oct 2013 07:40:54 -0000 X-List-Received-Date: Sat, 12 Oct 2013 07:40:54 -0000
Hello mailing list, I am developing a small text adventure game, which now runs nicely on a Linux terminal. I was going to ask a friend of mine to compile it on Windows, but then I thought: "Wouldn't it be awesome if people could run that in their browser?" I searched a bit and found this little example game [1]. As you can see it was written in Haskell but you can play it in your browser. Now, to the problem: it seems to me that the code requires UHC (Utrecht Haskell Compiler), which I don't have (I use GHC). What are the alternatives (if any)? As stated above, I am not going to code anything complex graphic wise, so the simpler the merrier! Thanks -F [1] http://jshaskell.blogspot.de/2012/09/breakout.html
From jeff.lasslett at gmail.com Wed Oct 9 01:50:57 2013 From: jeff.lasslett at gmail.com (Jeff Lasslett) Date: Wed, 9 Oct 2013 12:50:57 +1100 Subject: [Haskell-beginners] daemons and signals Message-ID: <CAK6+hbxrsejHYMwZWXWhMEnH7NJf-Bo=VhB=xe7UYO6388igEw@mail.gmail.com> X-List-Received-Date: Sat, 12 Oct 2013 07:40:54 -0000 X-List-Received-Date: Sat, 12 Oct 2013 07:40:54 -0000
Hello, I'm trying to write a daemon that handles some signals. My problem is currently with the handling of posix signals. I don't think my signal handlers are being run. All they do at present is write to syslog and a file (for diagnostic purposes). I'm not seeing anything in /var/log/system.log (I'm on a mac). My code is attached. Any advice would be greatly appreciated. Thanks, Jeff