//A lambda with receiver type. Accessing the receiver by using the keyword: this
val ftSubtraction: Int.(Int) -> Int = { y: Int -> this - y }