blob: 1f1df40512209ad2f6878455c4e35f65c98ee811 [file] [log] [blame]
/// Class used to multiply stuff.
public class Multiplier {
public init() {}
public func multiply(a: Int, _ b: Int) -> Int {
return a * b
}
}