def myFun(x: Int, y: Int): Int =
val myInt1: Int = x
val myInt2: Int = y
???
myFun(1, 2)
// scala.NotImplementedError: an implementation is missing
Scala- 20 min
In the first part of this 3-article series, we introduced the concepts of columnar file formats & row-based file formats. We also…