Skip to content

Instantly share code, notes, and snippets.

View atla's full-sized avatar
:octocat:
happy coding

Marcus Körner atla

:octocat:
happy coding
View GitHub Profile
package iwsexample
import scala.actors._
import scala.actors.Actor._
import scala.actors.Futures._
import scala.collection.mutable._
case class RegisterWorker (worker:Worker)
case class UnregisterWorker (worker:Worker)
case class SortList (data:List[Int])
/*
* Main.scala
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package scalaapplication15
object Main {