If I define a function as follows:
f(x,y) = x^2 + y
Is there a way that I acces the body of the function without evaluating it? As in, I would like to do print(f) and for it to show "x^2 + y"
If I define a function as follows:
f(x,y) = x^2 + y
Is there a way that I acces the body of the function without evaluating it? As in, I would like to do print(f) and for it to show "x^2 + y"
See https://github.com/timholy/CodeTracking.jl
Maybe you’ll find it useful