September 2018
Intermediate to advanced
398 pages
9h 43m
English
First things first, we need to set up our work environment. In this section, we will get all the tools and libraries, and then install and configure them on your computer.
Scala programs are compiled to Java bytecode, which is a kind of assembly language that can be executed using a Java Virtual Machine (JVM). You will, therefore, need to have a Java compiler and a JVM installed on your computer. The Java Development Kit (JDK) provides both components, alongside other tools.
You could develop in Scala using a simple text editor and compile your programs using the Scala Simple Build Tool (SBT). However, this would not be a pleasant nor productive experience. The majority of professional Scala developers use an ...
Read now
Unlock full access