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

6 lines
105 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
' FB 1.05.0 Win64
Function multiply(d1 As Double, d2 As Double) As Double
Return d1 * d2
End Function