RosettaCodeData/Task/Function-definition/FreeBASIC/function-definition-1.freebasic
2016-12-05 23:44:36 +01:00

5 lines
105 B
Text

' FB 1.05.0 Win64
Function multiply(d1 As Double, d2 As Double) As Double
Return d1 * d2
End Function