cc: [email protected] [email protected]
Subject: Re: Re: [ast-developers] [uwin-developers] Next alpha/beta and roadmap
for ksh93v?
--------
> This example should IMO just work:
> function f
> {
> nameref nv=$1
> print "maxval=${nv.MAX}"
> }
> if (( condition1 ))
> bool val
> else
> integer val
> fi
> f val
>
> Tina
It will work with the next alpha if you code it properly:
function f
{
nameref nv=$1
print "maxval=$((nv.MAX))"
}
if (( condition1 ))
then bool val
else
integer val
fi
f val
David Korn
[email protected]
_______________________________________________
ast-developers mailing list
[email protected]
http://lists.research.att.com/mailman/listinfo/ast-developers