RosettaCodeData/Task/Function-definition/AmigaE/function-definition.amiga

12 lines
193 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
PROC my_molt(a,b)
-> other statements if needed... here they are not
ENDPROC a*b -> return value
-> or simplier
PROC molt(a,b) IS a*b
PROC main()
WriteF('\d\n', my_molt(10,20))
ENDPROC