Function definition: Difference between revisions

Content added Content deleted
(Adding Dream Maker Example)
Line 1,403: Line 1,403:


=={{header|EasyLang}}==
=={{header|EasyLang}}==
<syntaxhighlight lang="text">func multiply a b . r .
<syntaxhighlight lang="text">
proc multiply a b . r .
r = a * b
r = a * b
.
.
call multiply 7 5 res
call multiply 7 5 res
print res</syntaxhighlight>
print res
</syntaxhighlight>


=={{header|EchoLisp}}==
=={{header|EchoLisp}}==