Classes and Objects: The Blueprint of Your Application
Learn how to define classes, create instances (objects), and understand the role of constructors in Scala.
Read MoreExplore all lessons related to Scala
Learn how to define classes, create instances (objects), and understand the role of constructors in Scala.
Read MoreAn introduction to the Scala Toolkit, a curated set of libraries for common tasks like reading files, parsing JSON, and making HTTP requests.
Read MoreExplore how to perform iteration in Scala using while loops and the more idiomatic and powerful for-comprehensions.
Read MoreMaster string manipulation in Scala, including s-interpolation, f-interpolation for formatting, and creating multiline strings.
Read MoreLearn how to define functions using def, specify parameter and return types, and understand Scala's powerful type inference.
Read MoreDiscover how almost everything in Scala is an expression that returns a value, starting with the powerful if/else construct.
Read More