I am implementing boundary element method with curved elements. As it is daunting task to evaluate derivatives I thought about using `Calculus` symbolic differentiation which as output gives expression. Now I need to convert this expression to a function, but how can I do it?
As an example consider
expr = :(x + y)
how can I convert it to the function?
function f(x,y)
# Some magic here
end
