debug
val functionThatAddsOne = add(1) //this returns a function that takes an Integer, when called it returns an Integer val result = functionThatAddsOne(2) // 1 + 2