Re: TIB: Question concerning renaming


[Prev][Next][Index][Thread]

Re: TIB: Question concerning renaming




Please note that you CAN use multiple indirection operators:
varA holds "Hello"
varB holds "varA"

:Disp varA
Hello

:Disp varB
varA

:Disp #varB
Hello

:Disp #"varA"
Hello

:Disp #"varB"
varA

:Disp #(#"varB")
Hello

-Adam

"M. Adam Davis" wrote:
> 
> "M. Adam Davis" wrote:
> > :CopyVar #"varB",#"MyVar"
> > Creates or overwrites variable MyVar, and put the contents of varA into it.
> 
> Sorry, I should have written:
> Creates or overwrites variable MyVar, and put the contents of varB into it.
> 
> ie, MyVar now contains "varA".
> 
> -Adam



References: