I'd like to be able to display the value of local variables in Do files for general troubleshooting purposes. As a simple example, the following code does not work:
local ASDF = 1
display ASDF
which gives an error of ASDF invalid name. How should I code such instances to be able to display a local variable?
Thanks
local ASDF = 1
display ASDF
which gives an error of ASDF invalid name. How should I code such instances to be able to display a local variable?
Thanks
Comment