Skip to content

Instantly share code, notes, and snippets.

@vdichev
Created July 12, 2010 03:40
Show Gist options
  • Save vdichev/472108 to your computer and use it in GitHub Desktop.
Save vdichev/472108 to your computer and use it in GitHub Desktop.
import scala.actors._
import Actor._
for (i <- 1 to 500) actor {
println("Starting actor... " + i)
Thread.sleep(5000L)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment