in reply to Re: Using ternary operator as lvalue in push
in thread Using ternary operator as lvalue in push
maybe different settings would allow the compiler to reduce the condition at compile-time (my friend case) resulting inmy $c = 1; push $c>0 ? @a : @b, "foo";
that will explain those behaviourpush @a, "foo";
Oha
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Using ternary operator as lvalue in push
by ikegami (Patriarch) on Aug 01, 2007 at 14:19 UTC |