Ruckus
val add: (Int, Int) -> Int = { a, b -> a + b } val add5: (Int) -> Int = { add(it, 5) } assert(add5(10) == 15)
robstoll