it's like this ``` val functionThatAddsOne = add(1...
# getting-started
d
it's like this
Copy code
val functionThatAddsOne = add(1) //this returns a function that takes an Integer, when called it returns an Integer
val result = functionThatAddsOne(2) // 1 + 2