Swift `in` keyword meaning?
In a named function, we declare the parameters and return type in the func declaration line. func say(s:String)->() { // body } In an anonymous function, there is no func declaration line – it’s anonymous! So we do it with an in line at the start of the body instead. { (s:String)->() in // body … Read more