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

12 lines
193 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07: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