Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Recently scalaz caught my eye. It looks very interesting, but I have not found any good introduction to the library. Seems that scalaz incorporates a lot of ideas from haskell and mathematics. Most articles that I found assume that you already feel comfortable with these concepts.

What I'm looking for is gradual introduction to the library and underlying concepts - from simple and basic concepts to more advanced (which basesd in basics).

I also looked to the examples, but it's hard for me to find the point where I should start to learn library.

Can somebody recommend me some good scalaz introduction or tutorial (that covers basics and advanced concepts)? Or give me starting point in the answer.

Thank you in advance!


Update

Thanks everybody for the great answers! I summarized answers and added some more links in my blog:

http://hacking-scala.tumblr.com/post/49050104489/scalaz-resources-for-beginners

share|improve this question

9 Answers

up vote 39 down vote accepted

Hieko Seeberger has recently started blogging on functional programming and category theory applied to Scala. Two opening posts are very educative (and easy to read), and can help getting over the initial barrier in learning scalaz.

EDIT: When you get comfortable with the fundamentals, I would recommend you to read through http://apocalisp.wordpress.com/ (blog driven by Runar Oli and Mark Harrah) and the weblog of Tony Morris

UPD: "Functors, Applicative Functors and Monoids" chapter of "Learn You a Haskell for Great Good!" has a lot of examples in Haskell with detailed explanations, which can easily be translated to Scala/scalaz.

share|improve this answer
8  
Perfect, now in addition to my extreme-curiosity-syndrome I have my-brain-is-melting-syndrome :) Anyways, thanks! Interesting articles. Looks like something I was searching for (anyway I encourage everybody to post their ideas - every input is valuable) – tenshi Feb 1 '11 at 21:14

There are also some video resources I have seen presenting scalaz at an introductory level,

They are both given by contributors to scalaz and introduce the contents and concepts illustrated by evolving a series of code examples. The audiences for both these talks were Scala enthusiast groups.

share|improve this answer
2  
Nick Partridge's presentation (#1, above) was the lightbulb moment for me. – oxbow_lakes Feb 1 '11 at 21:24
The first video is really great. I find it very inspiring. – tenshi Feb 1 '11 at 23:40
What really helps is the pace Nick sets in his delivery which allows enough time for the information to sink in and thus preventing that familiar (for me) feeling of drowning in detail. The views expressed at the end of the video, I feel, are very pertinent too. – Don Mackenzie Feb 2 '11 at 12:57

here is a great tutorial https://github.com/jrwest/learn_you_a_scalaz

share|improve this answer

I have found this notes interesting:

http://debasishg.blogspot.com/search/label/scalaz

share|improve this answer

I wrote a series of posts on my blog on this topic, and then compiled it together:

share|improve this answer
If you're looking for something that covers scalaz7 and that goes over the whole lib then this is a great resource. – sourcedelica Sep 17 '12 at 12:00

Not tested myself, but maybe this Scalaz Guide can help
(and/or can be contributed to, since it is very much a work in progress).

share|improve this answer
2  
The link seems to be broken. – Bill Jan 12 at 2:27

A couple more resources.

share|improve this answer
Thanks a lot! I added these resources to my blog post: hacking-scala.posterous.com/scalaz-resources-for-beginners – tenshi Feb 20 '12 at 21:57

Chris Marshall recently did a talk at LSUG/Skills Matter on Practical Scalaz: Making Your Life Easier the hard way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.