Let's assume I have a function defintion like below:
def my_function(argument) do
do_something(argument)+2
end
Now, the output I expect would be something like this:
>> function_body(&my_function/1)
"do_something(argument)+2"
Is there any way to achieve it?