It would be really cool if when a closure is the last argument of a function, you can use syntax similar to swift and kotlin: ```swift functionWhichTakesAClosure(1, 2) { arg1, arg2 -> return arg1 + arg2 } ```