ekramramu
5/17/2018 - 5:20 PM

calculationg.swift

struct Multiplier {
       let valueWithMultiply:Int
       subscript(multiplyedBy:Int)->Int {
        return self.valueWithMultiply * multiplyedBy
      }
}