RosettaCodeData/Task/Function-definition/EasyLang/function-definition.easy

5 lines
57 B
Text
Raw Permalink Normal View History

2023-09-16 17:28:03 -07:00
func multiply a b .
return a * b
2023-07-01 11:58:00 -04:00
.
2023-09-16 17:28:03 -07:00
print multiply 7 5