Hiding synonyms

1991-10-24 Thread haskell-request
Original-Via: uk.ac.nsf; Thu, 24 Oct 91 22:23:45 BST Original-Sender: [EMAIL PROTECTED] Lennart brings up some interesting points. What is at stake here is the interpretation of the closure rule, Section 5.1.3. The question needs to be a little more precise. Lennart's example is What happens

Haskell compiler for Sun-3 with "let"?

1991-10-24 Thread haskell-request
Original-Via: uk.ac.nsf; Thu, 24 Oct 91 22:15:31 BST Hi, Does anyone have a Haskell compiler for Sun 3's which supports the new "let" syntax? I could easily add it to my own compiler, but my compiler has no type checker at present (so no classes and no currying). My requirements are: (1) Hask

Prelude hiding

1991-10-24 Thread haskell-request
Original-Via: uk.ac.nsf; Thu, 24 Oct 91 01:55:59 BST What happens with the following program? import Prelude hiding(Dialogue) main _ = error "main" Dialogue is not in the Core so it can be hidden, making main have an unknown type. -- Lennart