RosettaCodeData/Task/Function-definition/Metafont/function-definition-3.metafont

5 lines
66 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
def mult(expr a, b) = (a * b) enddef;
t := mult(2,3);
show t;
end