Re: About -Wall option

2007-12-06 Thread Luis Cabellos
I think that put signatures is a good practice. I will switch to that. Maybe I preferred to not put signatures because is cooler than other languages type systems :-D Wolfgang Jeltsch wrote: > Inserting all type signatures is definitely best practice. Yitzchak Gale wrote: >My personal style is:

Re: About -Wall option

2007-12-05 Thread Wolfgang Jeltsch
Am Mittwoch, 5. Dezember 2007 13:43 schrieb Luis Cabellos: > Hi, > > I have a question, what's the best way to program? > - put all the signatures in the Haskell Code? > - Only put the type signatures needed to compile (like monomorphism errors > or ambiguous signature)? > > Until now, I prefer t

Re: About -Wall option

2007-12-05 Thread Olivier Boudry
On Dec 5, 2007 7:43 AM, Luis Cabellos <[EMAIL PROTECTED]> wrote: > Hi, > > I have a question, what's the best way to program? > - put all the signatures in the Haskell Code? > - Only put the type signatures needed to compile (like monomorphism > errors or ambiguous signature)? > > Until now, I p

About -Wall option

2007-12-05 Thread Luis Cabellos
Hi, I have a question, what's the best way to program? - put all the signatures in the Haskell Code? - Only put the type signatures needed to compile (like monomorphism errors or ambiguous signature)? Until now, I prefer the second one, but when I use the -Wall option, there's a lot of complain