Type Inference First thing to understand about Scala is that it is a Dynamically Typed Language which means that the data type of the values or variables are deduced at runtime. scala> val a = 10.0 a: Double = 10.0 Although it is dynamically types, you can still specify the datatype. scala> val b: Double = 10.0 b: Double = 10.0 Being dynamically […]
