Not Implemented Method in Scala

Signaling unimplemented code sections using Scala's ??? keyword.
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
Destructuring is a very powerful & widely-used syntactic construct that allows us to decompose a given object or structure…
A filesystem is a method and data structure used by operating systems to manage how data is stored, organized and retrieved….
Rust is a compiled, multi-paradigm, low-level, statically-typed, general-purpose programming language emphasizing performance, type safety, and concurrency. It was originally…
Over the past decade, programming has emerged as an indispensable tool, enabling us to tackle challenges previously thought impossible….

Request Full Resume