Page 1 of 1

Set reprocess not for script vars?

Posted: 13 Apr 2015 22:07
by TheQwerty
Just curious why the post-processing available via the set SC is limited to environmental and native XY variables?

Cause it would be nice if script vars had the same love:

Code: Select all

"Test"
 $file = 'script.xys';
 $path = '<xyscripts>\$file';
 set $resolved, $path, 'r';
 echo "$path<crlf>$resolved";

Re: Set reprocess not for script vars?

Posted: 14 Apr 2015 16:34
by admin
Good question. Don't know. Changed it.

Re: Set reprocess not for script vars?

Posted: 14 Apr 2015 21:20
by PeterH
Not bad :D

Code: Select all

  set $resolved, $path, 'r';  // You know that instead of this
  $resolved = $path, 'r';    // you also can write it this way
:idea:

(Both bear the risk not to be seen :whistle: )