RosettaCodeData/Task/Function-definition/FreeBASIC/function-definition-1.freebasic

6 lines
105 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
' FB 1.05.0 Win64
Function multiply(d1 As Double, d2 As Double) As Double
Return d1 * d2
End Function