- or download this
while(
condition1 &&
...
{
#statements;
}
- or download this
while(
1 condition1 &&
...
{
#statements;
}
- or download this
open(A,"e:\\a\\a.txt")or die;
@a=<A>;
...
}
last if($a[$line]=~/\{/g);
}
- or download this
while(
(
...
{
#statements;
}
- or download this
while(
(
...
condition6
)
)
- or download this
while(
(
...
6 condition6
)
)