Function definition: Difference between revisions

Content added Content deleted
(Added LFE example)
Line 795: Line 795:
putStrLn(string( multiply(2, 3) ));
putStrLn(string( multiply(2, 3) ));
}</lang>
}</lang>

=={{header|LFE}}==
<lang lisp>
(defun mutiply (a b)
(* a b))
</lang>


=={{header|Liberty BASIC}}==
=={{header|Liberty BASIC}}==