Sign in
bazel
/
bazel
/
c331f24a3a8af5e19f2d603d0b77ca90923b3dc2
/
.
/
examples
/
swift
/
BarLib
/
mul.swift
blob: 898c0b687755661a51c25824ed908f15a31bbcc7 [
file
]
/// Class used to multiply stuff.
public
class
Multiplier
{
public
init
()
{}
public
func multiply
(
a first
:
Int
,
b second
:
Int
)
->
Int
{
return
first
*
second
}
}