Following this post, I defined a macro inside a function:
macro Name(arg)
string(arg)
end
function myfunc(df)
@Name df
end
tf = 3
myfunc(tf)
What I want is:
''tf''
But what I actually got is
''df''
Is there a way to achieve this?
Thanks