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

5 lines
66 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
def mult(expr a, b) = (a * b) enddef;
t := mult(2,3);
show t;
end