* Pense, Joachim <[EMAIL PROTECTED]> [2003-07-02 14:15]:
> You can write
>
> if ($some_condition) {
> do_this;
> do_that;
> do_something_else;
> }
>
> and you can write
>
> do_this if $some_condition;
>
> You need not write
>
> if ($some_condition) {do_this}
You can also write
do {
do_this;
do_that;
do_something_else;
} if $some_condition;
so your second example is not really as restricted as you're
making it out to be. static() would be.
--
Regards,
Aristotle
