Still needs work for when default values are given for arguments, like this: ```{r} > norm <- makeFun(pnorm(x, mean=m, sd=s) ~ x, s=2, m=0) > norm function (x, s = 2, m = 0) pnorm(x, mean = m, sd = s) > D(norm(x) ~ x) function (x, type = O) dnorm(x, 0, type) ``` Why is there a `type=O`?
Still needs work for when default values are given for arguments, like this:
Why is there a
type=O?