Function definition: Difference between revisions

Content added Content deleted
No edit summary
(Adding Dream Maker Example)
Line 1,352: Line 1,352:


me_msg()_funct(multiply)_param(1,2);</syntaxhighlight>
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}}==
=={{header|Draco}}==