I've been trying to understand actors in scala but I'm still not getting it...
The following code:
def main(args: Array[String]){
while(true){
println("inside main")
MyActor ! "go"
}
}
object MyActor extends Actor{
def act(){
loop{
react{
case _ => println("inside actor")
}
}
}
}
It is printing inside main, but not inside actor... Why? Moreover, what's the difference between receive and react??