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";Code: Select all
"Test"
$file = 'script.xys';
$path = '<xyscripts>\$file';
set $resolved, $path, 'r';
echo "$path<crlf>$resolved";Code: Select all
set $resolved, $path, 'r'; // You know that instead of this
$resolved = $path, 'r'; // you also can write it this way