Re: [Haskell-cafe] Re: wxHaskell and do statements

2005-12-02 Thread Sven Panne
Am Dienstag, 29. November 2005 16:16 schrieb Sebastian Sylvan: > IIRC Haskell assumes a tab is 8 spaces. Correctly, it is explicitly specified in the Haskell spec, see: http://haskell.org/onlinereport/syntax-iso.html#layout > IMO that's way too much. Haskell tends to take up quite a bit of >

Re: [Haskell-cafe] Re: wxHaskell and do statements

2005-11-29 Thread Sebastian Sylvan
On 11/29/05, mempko <[EMAIL PROTECTED]> wrote: > Malcolm Wallace wrote: > > mempko <[EMAIL PROTECTED]> writes: > > > >> Hello, I have a program that just will not compile and I cannot figure > >> out why. > > > > Wrong indentation. Tab stops are 8 spaces in Haskell, but your code > > seems to assu

[Haskell-cafe] Re: wxHaskell and do statements

2005-11-29 Thread mempko
Malcolm Wallace wrote: mempko <[EMAIL PROTECTED]> writes: Hello, I have a program that just will not compile and I cannot figure out why. Wrong indentation. Tab stops are 8 spaces in Haskell, but your code seems to assume 6 spaces. - module Main where import Graphi