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

I've recently become interested in learning Scala, my first thought was a simple compiler, but I don't have very good knowledge of Automata theory.

So my question is: what's a good project or tutorial to learn scala with?

share|improve this question

closed as not constructive by Will Oct 1 '12 at 15:57

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

20 Answers

up vote 23 down vote accepted

I used scala in combination with Processing to make computer games! What better way to learn a language than to use it!

Of course, I also made functional-friendly programs in the beginning. Fractals are an excellent example of this, as are image filters. However, it took a traditionally-imperative problem such as an Asteroids clone to make it really click with me.

EDIT: On a similar note, writing a scheme compiler in scheme really helped me learn the language, but that's not nearly as simple or feasible with a language as complex as Scala. Maybe write a scheme compiler in Scala?

share|improve this answer

There is very good a book called "Programming in Scala" that is being written at the moment. You can buy a preprint PDF at Artima.

Of course there is also a lot of free information available on the Scala site. Look at the Scala Reference manuals.

If you have questions you can go to the Scala mailing lists, which are also reference on the Scala site.

share|improve this answer

For a Java programmer I would recommend Daniel Spiewak's Scala for Java Refugees tutorial series.

share|improve this answer
2  
That is a great series. – Kevin Albrecht Oct 2 '08 at 22:47
Excellent introduction and tutorial for Java developers. – mjuarez Apr 27 '12 at 17:46

As Lars mentions, Cay Horstmann's languages course is a great way to get started. I have been following it regularly, and his slides are filled with hands-on examples to try out. While some may be disappointed that the course specifically hones in on the functional aspects of Scala, it was great for me coming from a Java background to break out of the OO mindset for a bit.

Another way I'm learning Scala is to blog about it, comparing it with Java (pros/cons/when would I want to use each). In general, one good way to learn is to compare it with another language you already know. Implement the same problem in both languages and evaluate the pros/cons of each, so that you can see where you would want to use each one.

The third way is to do problems in Scala. I find I learn best if I have a specific objective in mind. Whether it be to implement an entire application, or just solve little problems here and there. Because I'm doing this in my off time, and don't have a lot of bandwith to solve big problems, I plan on solving problems from Project Euler. That way, I can focus more on learning the language than coming up with problems to solve.

share|improve this answer
1  
I'm also doing project Euler in my spare time, with Scala. :) – Lars Westergren Oct 10 '08 at 6:40

Cay Horstaman has his lectures and exercises for a functional programming course with Scala here.

share|improve this answer
I'm following his course too - it's really helping me get out of the OO mindset! My next plan of attack is to do some Project Euler problems. – Julie Oct 10 '08 at 4:01

I'm currently reading though a mammoth list of scala blog posts by the Code Commit guy. He's a fairly talented writer, and many of the posts are aimed at Java developers like myself.

You can find all his scala posts here.

share|improve this answer

Why not write your specifications/tests for your java code in Scala?

You can have a look here (in the "Unit testing" paragraph) for a set of available libraries:

I personally would advise to go with specs (haha, I'm the author,...) or ScalaTest.

Eric.

share|improve this answer
It was working in 2009 :-). The new link is here: wiki.scala-lang.org/display/SW/…. – Eric Jan 29 '12 at 20:16

If you come from Java, I think that a good way to star is reading this series of articles from IBM.

Ted Newar give us a nice and funny explanation about Scala, sometimes comparing to Java what makes you lear faster in a consistent way.

Good luck!

share|improve this answer

So far, the Code Commit Blog and Scala By Example proved to be the most invaluable learning resources for me. (Your mileage may vary, depending on your programming records.)

In practice (learning by doing is best!), you should start with transforming one of your former minor Java projects (or a module of them) and you shall see how boilerplate is eliminated and the need for complex frameworks is disappearing quickly!

share|improve this answer

So far I found O'Reilly's Programming Scala as the most easiest and complete one. And you can read the complete book online for free.

share|improve this answer

There is upcoming Coursera online class (starts 18 September 2012) from language creator Martin Odersky
course cover the following aspects

  • Week One: Programming paradigms; overview of functional programming and the Scala programming language.
  • Week Two: Defining and using functions, recursion and non-termination, working with functions as values, reasoning by reduction.
  • Week Three: Defining and using immutable objects, review of inheritance and dynamic binding.
  • Week Four: Working with collections: Sequences, sets and maps
  • Week Five: Defining recursive data and decomposition with pattern matching.
  • Week Six: Reasoning about functions
  • Week Seven: Case study

And I do belive that it worth looking.

share|improve this answer
Taking it right now, the platform is very nice and content is great! – tommasop Sep 18 '12 at 21:50

I'm currently using the exercises from here. I'll admit that his approach is not really specific to scala, but it is a really nicely stepped approach to moving from the basic idioms up into the special-purpose libraries of a new Language of the Year..

Update(09.27.2008): Here's a really good primer to the syntax of Scala: link

share|improve this answer

I’m finding that converting some of my “hobby” open source projects from Java to Scala, along with the excellent Venner/Spoon/Odersky book has been a huge help.

http://davebsoft.com/applications

http://briccetti.blogspot.com/2009/01/dbschools-overlapping-blobs-and-name.html

share|improve this answer

I'd suggest pipe programming. :-)

Do you use Unix? Have you ever written long sequences of grep, awk, cut, sort, uniq, sed, wc and such commands piped together? If not, sorry, my answer is not for you. If you have, though, you'll find yourself written similar code in Scala.

It's mostly about collections. You think of Sets, and Lists, and Arrays and Sequences... You don't need to worry much about what type of data you have -- you can easily convert from one type to another.

Learn the basics of using those structures. Look up 99 Scala problems (based on 99 Prolog problems) on the Internet, and try these exercises. This will give you the basics of manipulating those types.

Next, start beefing up on map, flatMap, exists, forall and filter. These are the workhorses of collections. It's like grep&sed. Try replicating pipe commands in Scala (scala.io.Source makes it easy to generate lists from file lines).

After that, get the Scala API and pay attention to the methods defined in all collections. Think of creative uses for them.

That's what did it for me in the end.

share|improve this answer

I have written an easy reading "getting started" tutorial at http://vigtig.it/blog/?page_id=637 together with a few links to very good learning pages. You should check it out.

share|improve this answer
I recommend it, I think it is very good. – r4. Jan 24 '12 at 17:39

Scalatron - learn scala with a programming game.

share|improve this answer

besides the Artima Venner/Spoon / Odersky book, pragmatic is also doing a book which should be in beta PDF soon:

http://pragprog.com/titles/vsscala/programming-in-scala

share|improve this answer

O'Reilly is also writing a book on Scala, about time, I need all of the help I can get....

http://www.al3x.net/2008/10/im-writing-book.html

share|improve this answer

How about joining (even if temporary) an open source Scala project that is interesting. - Lift Web Framework - Crank on GitHub a Incrementally Scalable Key Value Storage System.

Both are in Scala and I'm sure there are others.

share|improve this answer
this is a perfectly fine for experinced scala programmers, but undoable for a freshmans, I think – om-nom-nom Sep 6 '12 at 12:24

Some tutorials here: http://reboltutorial.com/blog/category/scala/

share|improve this answer

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