blob: 898c0b687755661a51c25824ed908f15a31bbcc7 [file] [log] [blame]
Dmitry Shevchenko2036dbd2016-04-22 20:46:07 +00001/// Class used to multiply stuff.
2public class Multiplier {
3 public init() {}
4
Dmitry Shevchenko2afab6b2017-01-13 22:18:10 +00005 public func multiply(a first: Int, b second: Int) -> Int {
6 return first * second
Dmitry Shevchenko2036dbd2016-04-22 20:46:07 +00007 }
8}