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