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