Re: Portable C code

2000-06-21 Thread Hannah Schroeter
Hello! On Wed, May 24, 2000 at 08:15:24AM -0700, Julian Seward (Intl Vendor) wrote: | Anybody knows how to generate a portable C code through GHC ? It depends what you mean by portable. GHC can produce C code which you can compile with gcc, without special support -- we call this

RE: Can't catch exception in socket communication

2000-06-21 Thread Simon Marlow
Ok, ok, sorry. I found a solution ;-) installHandler sigPIPE Ignore Nothing That seems to be enough. That's it. This one caught me too! But it's standard behaviour, so I think we should leave it in place. Cheers, Simon

Re: Can't catch exception in socket communication

2000-06-21 Thread Marcin 'Qrczak' Kowalczyk
Wed, 21 Jun 2000 02:00:09 -0700, Simon Marlow [EMAIL PROTECTED] pisze: installHandler sigPIPE Ignore Nothing That seems to be enough. That's it. This one caught me too! But it's standard behaviour, so I think we should leave it in place. Adding a note in the documentation. --

Positions at the IT University of Copenhagen

2000-06-21 Thread Henrik Reif Andersen
Associate Professorships and Assistant Research Professorships within the Internet Technology Programme at the IT University of Copenhagen. Deadline: 31 August 2000. (www.it-c.dk) Applications are invited for three associate professorships and assistant research professorships within the

Re: A demodulizer for Haskell?

2000-06-21 Thread Marcin 'Qrczak' Kowalczyk
Tue, 20 Jun 2000 17:28:25 -0400 (EDT), Patricia Johann [EMAIL PROTECTED] pisze: For our research, it would be helpful to have a "demodulizer" for Haskell --- that is, a program that can translate a Haskell program consisting of several modules into a single module. I think an opposite tool

Editor Combinators

2000-06-21 Thread Wolfram Kahl
Editor Combinators == http://ist.unibw-muenchen.de/EdComb/ Editor combinators allow to assemble structure editors compositionally instead of generating them from language descriptions, just as parsing combinators allow to

Erlang User Conference'

2000-06-21 Thread Bjarne Däcker
Erlang users and other interested parties are invited to the Sixth EUC (Erlang/OTP User Conference) which will take place in Älvsjö, Stockholm, on the 3rd of October. The conference in particular is aimed for - Applications developers using Erlang and OTP (Open Telecom Platform). -

RE: Pattern matching

2000-06-21 Thread Simon Peyton-Jones
| 1) In Figure 3 (Semantics of Case Expressions, Part 1) clause c reads: | | case v of { p | g1 - e1 ; ... | | gn - en where { decls } | _ - e' } | | = case e' of | { y - -- (where y is a completely new variable) | case v of { |p -

RE: RE: A demodulizer for Haskell?

2000-06-21 Thread Simon Peyton-Jones
| Are you suggesting that some combination | of GHC flags will allow us to | achieve demodulization? No, it won't. But GHC does actually do a lot of what you want. There is a lot of tricky stuff associated with establishing the correct name space, and GHC does that. You could suck in a

Re: Pattern matching

2000-06-21 Thread Lennart Augustsson
Simon Peyton-Jones wrote: In Haskell, case e of { y-b } is equivalent to let y=e in b Actually, it's equivalent to (\ y - b) e since the let could be polymorphic. That is, case is not strict unless the patterns make it so. You may think it's curious but that's the