const

object Function {
  def const[X, Y](x: X)(y: Y): X
}

const accepts a value x and creates an anonymous function that returns that value x given any input value y.