(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Welcome to Scala version 2.11.2 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_67). | |
Type in expressions to have them evaluated. | |
Type :help for more information. | |
scala> import akka.actor._ | |
import akka.actor._ | |
scala> val system = ActorSystem("hoge") | |
system: akka.actor.ActorSystem = akka://hoge |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.