Function definition: Difference between revisions

Adding Dream Maker Example
No edit summary
(Adding Dream Maker Example)
Line 1,352:
 
me_msg()_funct(multiply)_param(1,2);</syntaxhighlight>
 
=={{header|DM}}==
Functions (called procs) may be derived from <code>proc</code>.
<syntaxhighlight lang="dm">proc/multiply(a, b)
return a * b
</syntaxhighlight>
 
=={{header|Draco}}==
1

edit