July 2017
Intermediate to advanced
796 pages
18h 55m
English
The scala command starts the interactive shell for you, where you can interpret Scala expressions interactively:
> scalaWelcome to Scala 2.11.8 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_121).Type in expressions for evaluation. Or try :help.scala>scala> object HelloWorld { | def main(args: Array[String]){ | println("Hello, world!") | } | }defined object HelloWorldscala> HelloWorld.main(Array())Hello, world!scala>
Read now
Unlock full access