12 lines
126 B
Text
12 lines
126 B
Text
|
|
Public Sub Main()
|
||
|
|
|
||
|
|
Print Multiply(56, 4.66)
|
||
|
|
|
||
|
|
End
|
||
|
|
|
||
|
|
Public Sub Multiply(f1 As Float, f2 As Float) As Float
|
||
|
|
|
||
|
|
Return f1 * f2
|
||
|
|
|
||
|
|
End
|