aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/swift/BarLib/mul.swift
blob: 1f1df40512209ad2f6878455c4e35f65c98ee811 (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
  }
}