This repository contains exercises and solutions for Inner Product's Essential Scala training course.
If you want to discuss the content or exercises with the authors, drop us an email.
This repository contains two branches: one for exercises
and one for solutions
.
The directory structure is the same in each branch.
You will need to have Git, the JDK, and an internet connection to run the exercises. All other dependencies are either included with the repo or downloaded on demand during compilation.
If you don't have a particular preference for a Scala editor or IDE, we recommend you do the exercises for this course using the Visual Studio Code editor with the Metals and Scala syntax extensions.
If you want to use IntelliJ we suggest installing it via the Scala Bundle, which includes all the plugins you need for Scala development.
To get started:
-
To run these exercises, you need a Java 8 compatible JDK on your machine. If you don't have this already, you can download and install one from OpenJDK.
-
Clone this repository to a directory on your hard drive, e.g.
~/essential-scala-code
:bash$ git clone https://github.com/inner-product/essential-scala-code.git
-
Change to the root directory in the repository:
bash$ cd essential-scala-code
-
Run the
sbt.sh
script. You may have to wait while SBT downloads various dependencies:bash$ ./sbt.sh # Lots of output here... # The first run will take a while... >
-
Type
runMain intro.HelloWorld
at the SBT prompt. You may have to wait while SBT downloads various dependencies. -
If you see the message
"Hello world!"
, you're ready to go!
If you have any problems getting started, get in touch via email.
You will need to have installed Git and the JDK (we recommend OpenJDK). Complete the following steps outlined in Chapter 1 in the section entitled "Setting up SBT for This Book":
-
To run these exercises, you need a Java 8 compatible JDK on your machine. If you don't have this already, you can download and install one from OpenJDK.
-
Clone this repository to a directory on your hard drive, e.g.
C:\essential-scala-code
:C:\> git clone https://github.com/inner-product/essential-scala-code.git ↩ C:\essential-scala-code
-
Change to the root directory in the repository:
C:\> cd\essential-scala-code
-
Run the
sbt.bat
script. You may have to wait while SBT downloads various dependencies:C:\essential-scala-code> sbt # Lots of output here... # The first run will take a while... >
-
Type
runMain intro.HelloWorld
at the SBT prompt. You may have to wait while SBT downloads various dependencies. -
If you see the message
"Hello world!"
, you're ready to go!
If you have any problems getting started, get in touch via email.