Re: [Haskell-cafe] Best Editor In Windows

2009-10-15 Thread Tom.Amundsen
Nathan P. Campos wrote: Hello, I'm very new at Haskell, i'm reading a book and starting, but i want to know which is the best editor for development under Windows, because now i'm using Notepad++(That i use to develop in C++). Thanks, Nathan Paullino Campos If you use emacs,

[Haskell-cafe] Functors and the Visitor Pattern

2009-06-03 Thread Tom.Amundsen
So, last night, I was having this problem with my Java code where I couldn't figure out for the life of me how to write a piece of code without a big if {} else if {} else if {} ... else {} structure. I was Googling Java Reflection to try to determine how to cast to the most concerete subclass at

[Haskell-cafe] Learning Haskell

2009-03-23 Thread Tom.Amundsen
How long did it take you to become proficient in Haskell? By that, I mean - how long until you were just as comfortable with Haskell as you were with your strongest language at that time? -- View this message in context: http://www.nabble.com/Learning-Haskell-tp22673552p22673552.html Sent from

[Haskell-cafe] Haskell Style - Pattern Matching with case vs. function declarations

2009-03-18 Thread Tom.Amundsen
Hi All, I am new to Haskell. I just started reading Real World Haskell a few days ago, so I apologize for being such a noob. But, I am curious why I see a lot of code where people do pattern matching via multiple function declarations instead of using the case ... of ... construct? For example: