aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/swift/BarLib/mul.swift
blob: 64d66cdbeac6654f05fffda52a6b9a5c1c206207 (plain)
1
2
3
4
5
6
7
8
/// Class used to multiply stuff.
public class Multiplier {
  public init() {}

  public func multiply(_ a: Int, _ b: Int) -> Int {
      return a * b
  }
}