Sign in
bazel
/
bazel
/
b147f5e3c453e1fe4ce73006b0aeab3a326a84b5
/
.
/
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
}
}