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
GitHub Gists is a tool developed by GitHub which provides a simple way to share code snippets with other people….
Markdown is a lightweight markup language used for creating formatted text. It was created in 2004 by John Gruber &…
Julia is a reasonably new, open-source, high-level, dynamically-typed programming language. It’s a multi-platform language supported on Linux, macOS, Windows and FreeBSD….
Formally, a type class is a type-system construct that supports ad hoc polymorphism. This is achieved by adding constraints to type variables…

Request Full Resume