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