RosettaCodeData/Task/Function-definition/Fortran/function-definition-7.f
2023-07-01 13:44:08 -04:00

2 lines
108 B
Fortran

c = multiply(y=b, x=a) ! the same as multiply(a, b)
z = multiply(y=x, x=y) ! the same as multiply(y, x)