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