Consistency in Scala
One of the goals of Scala is increased consistency compared to Java.Here are three high-level consistencies in Scala: Every value is an object. There are no primitives in Scala. Even its version of void (Unit) is an object. Nothing is an object. Nil is an object. Arrays are objects. Everything is an object. Every statement … Read moreConsistency in Scala