Re: [Haskell] -allow-extension-for-bottom

2004-10-12 Thread Nils Anders Danielsson
On Mon, 11 Oct 2004, Serge D. Mechveliani wrote: > Consider the compilation flag -allow-extension-for-bottom > > which changes the language meaning so that allows to ignore > the bottom value. For example, the programs > >(1) (\ x -> (if p x then foo (g x) else foo (h x)) ) > and >(2

Re: [Haskell] -allow-extension-for-bottom

2004-10-11 Thread Keith Wansbrough
> Dear Haskell implementors, > > Consider the compilation flag -allow-extension-for-bottom > > which changes the language meaning so that allows to ignore > the bottom value. For example, the programs > >(1) (\ x -> (if p x then foo (g x) else foo (h x)) ) > and >(2) (\ x -> foo

[Haskell] -allow-extension-for-bottom

2004-10-11 Thread Serge D. Mechveliani
Dear Haskell implementors, Consider the compilation flag -allow-extension-for-bottom which changes the language meaning so that allows to ignore the bottom value. For example, the programs (1) (\ x -> (if p x then foo (g x) else foo (h x)) ) and (2) (\ x -> foo ((if p x then g x