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