RosettaCodeData/Task/Function-composition/Mathematica/function-composition-3.math

3 lines
52 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
compose[f_, g_][x_] := f[g[x]]
compose[Sin, Cos][r]