「Swift」クロージャ(closure)のサンプル
使用例
let plus = {(x:Int, y:Int) -> Int in return x + y } let result = plus(8, 9) print(result)
結果 17
Coding Changes the World
使用例
let plus = {(x:Int, y:Int) -> Int in return x + y } let result = plus(8, 9) print(result)
結果 17