ekramramu
6/17/2018 - 12:08 PM

closureShorthand3.swift

var addTwoNumber:(Int,Int)->Int = {(numberOne,numberTwo)
    in
    numberOne + numberTwo
}