Why does the scripting engine care about whitespace?
Posted: 05 Aug 2010 21:17
This does what I expect it to:
, this does not:
Why?
Seems impractical too me, to have to use a variable on the same line that you define and set it.
Code: Select all
set $a, "<curname>"; msg "current selected item: $a";
Code: Select all
set $a, "<curname>";
msg "current selected item: $a";
Seems impractical too me, to have to use a variable on the same line that you define and set it.