Scala Tutorial

  • Post category:Scala
  • Reading time:2 mins read

What is Scala ?

Scala is a modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way. Scala has been created by Martin Odersky and he released the first version in 2003. Scala smoothly integrates the features of object-oriented and functional programming languages. This tutorial explains the basics of Scala in a simple and reader-friendly way.

Sample Scala Program

object Demo{
    def main(args:Array[String]){
      print("Hello Scala")
    }
}

Some frameworks written in Scala

Play Framework – The high velocity web framework for Java and Scala

Akka HTTP – Akka HTTP modules implement a full server and client-side HTTP stack on top of akka-actor and akka-stream.

Audience

This tutorial is created for beginners to help them understand the basics of Scala in simple and easy steps.