I would like to replicate the following behavior with a function
data = [1;2]
macro Name(arg) string(arg) end
print(@Name(data), " <- ", data)
> data <- [1,2]
function flow(arg) flow(data)
> data <- [1,2]
Most likely this should be very simple, but yet I didn’t find an easy way (or otherwise) to get: data<-[1,2]
Thank you!