Various examples of Scala code.
actors01 - Recursively builds a chain of actors and then sinks "Die" message and waits for a reply. actors02 - Computes the factorial of a given number specified amount of times using several actors. Round-robin load balancing is used to distribute work among actors.
functional01 - Simple closure and currying example.