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