Is there some macro that allows me to write strings with multiple lines removing the identiation of the code? Meaning:
julia> println("function f(x)
y = x + 1
return y
end")
function f(x)
y = x + 1
return y
end
I would like that that printed what this prints:
julia> println("function f(x)
y = x + 1
return y
end")
function f(x)
y = x + 1
return y
end