Re: [Haskell-cafe] [Haskell Beginner] Compiling wxhaskell fails for me

2008-07-30 Thread Jason Dusek
Maybe you could try building it with 2.8 and let us know how it goes? -- _jsn ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] [Haskell Beginner] Compiling wxhaskell fails for me

2008-07-30 Thread shelarcy
Hi, On Wed, 30 Jul 2008 16:02:22 +0900, Jason Dusek [EMAIL PROTECTED] wrote: Maybe you could try building it with 2.8 and let us know how it goes? We are discussing his problem in wxhaskell-users mailing-list now. http://www.mail-archive.com/[EMAIL PROTECTED]/msg00488.html I send patch

[Haskell-cafe] [Haskell Beginner] Compiling wxhaskell fails for me

2008-07-28 Thread Daniel Kahlenberg
Hi, I try to build the current wxhaskell stuff from the darcs repository on the sh provided by msys with mingw32 (`uname -a' : MINGW32_NT-5.1 ... 1.0.11(0.46/3/2) 2007-01-12 12:05 i686 Msys), but it fails with the message `wx/graphics.h' isn't found, when it comes to build the wxc part. On the

[Haskell-cafe] Haskell beginner

2007-03-15 Thread arnuld
i want to start learning Haskell and willing to master it :-) i have done some Common Lisp from http://www.gigamonkeys.com/book/. so i know what are functions, variables, etc. BUT i have never done any real life programmming or any kind of software development. in my country no Haskell books

Re: [Haskell-cafe] Haskell beginner

2007-03-15 Thread Scott Williams
Hi Arnuld, It's certainly possible. I'm new to the language too and learning it much the same way. It sounds like you don't have a lot of experience programming. I think this is an asset, not a liability. I would be interested in what concepts are the hardest to understand so the community can

Re: [Haskell-cafe] Haskell beginner

2007-03-15 Thread Jefferson Heard
Yet another Haskell Tutorial is the way I learned it. I find that subscribing to the mailing lists and reading the tutorial material is generally speaking enough. On Thursday 15 March 2007 14:30:03 arnuld wrote: i want to start learning Haskell and willing to master it :-) i have done some

Re: [Haskell-cafe] Haskell beginner

2007-03-15 Thread Paul Johnson
arnuld wrote: i want to start learning Haskell and willing to master it :-) Also check out the Wikibook at http://en.wikibooks.org/wiki/Programming:Haskell Do call back here if you need help. The Wikibook people would also appreciate feedback on what you found easy or difficult to

Re: [Haskell-cafe] Haskell beginner

2007-03-15 Thread Sebastian Sylvan
On 3/15/07, arnuld [EMAIL PROTECTED] wrote: i want to start learning Haskell and willing to master it :-) i have done some Common Lisp from http://www.gigamonkeys.com/book/. so i know what are functions, variables, etc. BUT i have never done any real life programmming or any kind of software

Re: [Haskell-cafe] Haskell beginner

2007-03-15 Thread Andrew Wagner
This is all a good idea, but I've found that I've never learned nearly as much as when I started bashing out some code. So I highly recommend starting up some project that's interesting to you too. Hang out in #haskell in IRC (freenode). That's probably the best resource you'll ever find when

Re[2]: [Haskell-cafe] Haskell beginner

2007-03-15 Thread Bulat Ziganshin
Hello Sebastian, Friday, March 16, 2007, 12:15:09 AM, you wrote: So here's the strategy: 1. Read tutorials 2. When you get stuck, ask on #haskell 3. Goto 1 (yes I deliberately wrote an imperative algorithm using gotos to describe how to learn Haskell, and I found it amusing) knowledge -

Re: [Haskell-cafe] Haskell beginner

2007-03-15 Thread Albert Y. C. Lai
Sebastian Sylvan wrote: So here's the strategy: 1. Read tutorials 2. When you get stuck, ask on #haskell 3. Goto 1 (yes I deliberately wrote an imperative algorithm using gotos to describe how to learn Haskell, and I found it amusing) It is just a standard transformation away from a

Re: [Haskell-cafe] Haskell beginner questions

2006-10-24 Thread jim burton
Cybertronic wrote: Hi all, I'm pretty much new to Haskell however I'm stuck on something which is that I'm trying to create a function called display where I type in a DVD name, e.g. dvd1, it returns d (String) and the multiplication of q (Int) and i (Double) Here's what I've done so