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