(no subject)

2002-05-02 Thread laurent mpeti kabila
REQUEST FOR URGENT BUSINESS ASSISTANCE -- Your contact was availed to me by the chamber of commerce. It was given to me because of my diplomatic status as I did not disclose the actual reasons for which I sought your contact. But I was assured That you are rep

[2nd CFP] AS 2002 - Action Semantics & Related Frameworks

2002-05-02 Thread mailinglist-admin
To the FME Mailing List: [Kindly forward to interested colleagues and local mailing lists] * DEADLINE FOR ABSTRACTS: MONDAY 6th MAY ** N.B. No extension of the deadline is envisaged(!) - but contact the organizer if you missed the first CFP and need an extra da

= Myth: All HGH Products Are the Same =

2002-05-02 Thread 0ffice100
All HGH products are not the same. There are three different types of products. Yet, all three are advertised as if they where the same. The three types are: 1) Homeopathic HGH 2) Pre-cursor HGH 3) Real or synthetic HGH (delivered by injection or, by an oral spray method). Do you kno

RE: Haddock

2002-05-02 Thread Simon Marlow
> I just tried haddock-0.1. Good thing! Two quibbles, though: > * the parser chokes on CVS headers like -- $Id ...$ > ( but -- -- $Id ..$ is OK) Yes, because '-- $' has a special meaning in Haddock (it's a named documentation comment). > * is there support for hierarchical namespaces? > ( w

Haddock

2002-05-02 Thread Johannes Waldmann
I just tried haddock-0.1. Good thing! Two quibbles, though: * the parser chokes on CVS headers like -- $Id ...$ ( but -- -- $Id ..$ is OK) * is there support for hierarchical namespaces? ( with module Foo.Bar in file Foo/Bar.hs, and so on ) Best regards, -- -- Johannes Waldmann http:/

Re: e = exp 1

2002-05-02 Thread D. Tweed
On Thu, 2 May 2002, Serge D. Mechveliani wrote: > I wrote about e :: Double for the Library. > > It can be obtained as exp 1, > but I wonder whether it is good for the library to add the `e' > denotation. Just a comment: my programming style (and others I've seen) use single letters param

Re: e :: Double

2002-05-02 Thread Lauri Alanko
On Thu, May 02, 2002 at 02:12:53PM +0400, Serge D. Mechveliani wrote: > Please, has Haskell e :: Double > > ( ~= limit (1 + 1/n)^n ) in its standard library? exp 1.0 Lauri Alanko [EMAIL PROTECTED] ___ Haskell mailing list [EMAIL PROTECTED] http:/

e = exp 1

2002-05-02 Thread Serge D. Mechveliani
I wrote about e :: Double for the Library. It can be obtained as exp 1, but I wonder whether it is good for the library to add the `e' denotation. - Serge Mechveliani [EMAIL PROTECTED] ___ Haskell mailing list [EMAIL PROTECTED] ht

e :: Double

2002-05-02 Thread Serge D. Mechveliani
Please, has Haskell e :: Double ( ~= limit (1 + 1/n)^n ) in its standard library? - Serge Mechveliani [EMAIL PROTECTED] ___ Haskell mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/haskell

finding sublist

2002-05-02 Thread Serge D. Mechveliani
Thanks to people who helped me with the task >> Import two space separated columns of integers from file. Claus Reinke <[EMAIL PROTECTED]> recommends to exploit `lines'. Indeed, it bocomes shorter now: main = readFile "data" >>= (putStr . show . twoIntLists) where twoIntLists str =