You can clone with HTTPS or SSH.
val system = ActorSystem("MySystem")var actorProps = Props[GreetingActor])val greeter = system.actorOf(actorProps) /*This sends a msg to the Greeting Actor.Akka allows to abstract the Actor's location. It can be in the same JVM process, in a remote machine even being a cluster of machines.*/greeter ! Greeting("Charlie Parker")