ekramramu
6/18/2018 - 10:17 AM

returnClosure4.swift

var calulator:(Int,Int,Int)->Int = {(a:Int,b:Int,c:Int)->Int
    in
    return a + b + c
    
}