Scala

object Main extends App {
    println("Hello, Scala!")
}

Table of Contents

  1. Why use Scala?
  2. Setup
  3. Scala Basics
    1. Syntax
    2. Apply Dynamic
  4. ScalaJS

Why use Scala?

What? Object-oriented and functional? Neato. Xalgorithms work is currently done on a base of scalable technologies: Kafka, Akka, Spark, Kubernetes, etc. To contribute to the core rule interpreter, I’ve learned a little Scala and written a few functions and unit tests.

Scala is a modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way. It smoothly integrates features of object-oriented and functional languages.

Personally I’ve seen and heard of Scala being used for better and for worse in the industry. As Scala is flexible, it opens the door for situations like the one described here:

Soon we had three kinds of Scala written at Twitter: Scala written by people who wished it was Ruby, Scala written by people who wished it was Java, and Scala written by people who wished it was Haskell. Let a thousand flowers bloom.1

Setup

My first few tests were compiled and run with scalac, but I’ve been dabbling more with IDEs as of late. I am certainly a JetBrains fan, so IntelliJ Idea was my first pick… And a bit of a mess to set up.

When I open an IDE, I want it to know that I will be ignoring the project files it creates. Any good IDE should be able to look at generic build files from maven, webpack, SBT, and say “Oh, hey, cool, I’ll use the tool you specify to build this project and provide context.” IntelliJ needed a little massaging to get to this point, but hey, IDE agnosticism is important.

To avoid the pain I went through, let me start by saying install these in order.

  1. SBT, the Scala Build Tool.
  2. The Scala Binaries. (Scroll down.)
  3. IntelliJ, our IDE.

After installing the Scala and IdeaVIM modules, you should be up and running with an .idea/* line in your .gitignore.

IntelliJ IDEA


Scala Basics

Syntax

Case sensitive Class Names are written in CamelCase LikeThis, Method Names are written in lesser-camelcase likeThis, programs end with .scala, and require an entry point expressed as def main(args: Array[ String ]){}. Identifiers must start with a letter or underscore and are case-sensitive.

Comments are expressed identically as they appear in Java. That is, single-line with // and multiline with /* *xyz */.

Interestingly, statements can be terminated with either a semicolon or newline. The semicolon is totally optional, unless multiple statements are expressed on the same line (it will be optional on the last statement.)

val s = "String"; println(s)

Packages are declared on the first non-comment line, like Java:

package com.testprog.stuff //Package declaration
import scala.xml._ //The contents of scala.xml
import scala.collection.mutable.HashMap //A single class/object
import scala.collection.mutable.{HashMap, TreeMap, TreeSet}

Apply Dynamic

Oh, this is new… Apply, select, update - dynamic if type checking fails?

A marker trait that enables dynamic invocations.


ScalaJS

https://www.scala-js.org/

  1. Quote from Peter Seibel, Cees de Groot, Scala Part II, http://evrl.com 


CC BY-SA 4.0 - This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. You are free to share, redistribute and adapt the material as long as appropriate credit is given, and your contributions are distributed under the same license.