3 lines
91 B
VB.net
3 lines
91 B
VB.net
Function multiply(a As Integer, b As Integer) As Integer
|
|
multiply = a * b
|
|
End Function
|