--- In [email protected], sgp <[EMAIL PROTECTED]> wrote:
>
> brucexs wrote:
>
> > I uploaded a fix, powerpro.exe only, version 4.6.01b; can you
please
> > download and see if it addresses all the problems you have.
>
> I haven't download the new beta yet, I was just wondering if the
new
> syntax supports environment variables,
>
> "[EMAIL PROTECTED]" (a,b)
>
No, % substition in strings in expressions is not the way PowerPro
works for environment vars.
You can use
var = env("progs") ++?'[EMAIL PROTECTED]'
var(a,b)
At one point, I was thinking of implementing a function declaration
instead of just a simple assignment. Then I thought I would need
global and local function declarations. And someplace to store the
declared path.
So it became simplest just to allow you to assign paths to scripts
and functions to variables, and call functions with those variable
names.
Essetially call function already allows this, above is just a bit
prettier.