hi,
> so,
>
> while $i < 10 print $i; print $j;
>
> should become
>
> while ($i < 10) { print $i; print $j; }
>
> or
>
> while ($i < 10) { print $i; } print $j;
> ???
]- !!! ;")
problem can be solved again in this way i.e. shell like syntax :
while $i > 10 && $i++ && print $i;
mean this
while ($i > 10 ) {$i++; print $i};
As I think litle bit more for this may be only "if/unless"
if $x > 10 print $x;
are a good candidates for this.... shortage, but some can again argue to use
print $x if $x > 10;
instead....
OR use "then" instead i.e.
if <condition> then ...do something...
while <condition> then ...do something...
just thoughts, nothing w/o we can live ofcourse.... ;")
=====
iVAN
[EMAIL PROTECTED]
=====