in reply to Re: string as ref ?!?!
in thread string as ref ?!?!

The second example works exactly as the third example. It doesn't matter what string we use - an empty string works the same as a string with a different value.
"" -> {foo}
is the same as
${""}{foo}
just like
"Bar" -> {foo}
is the same as
${"Bar"}{foo}

Abigail