RosettaCodeData/Task/Higher-order-functions/Metafont/higher-order-functions.metafont
2023-07-01 13:44:08 -04:00

5 lines
99 B
Text

def calcit(expr v, s) = scantokens(s & decimal v) enddef;
t := calcit(100.4, "sind");
show t;
end