4 lines
99 B
VB.net
4 lines
99 B
VB.net
|
|
Function Multiply(ByVal a As Integer, ByVal b As Integer) As Integer
|
||
|
|
Return a * b
|
||
|
|
End Function
|