Function definition: Difference between revisions

Content added Content deleted
(Add Brat solution)
Line 118: Line 118:
END FUNCTION</lang>
END FUNCTION</lang>


=={{header|Brat}}==
<lang brat>multiply = { x, y | x * y }

p multiply 3 14 #Prints 42</lang>


=={{header|C}}==
=={{header|C}}==