- or download this
perl -MO=Deparse -e 'sub Foo() {}; (time ? @a=() : $a) = Foo();'
- or download this
sub Foo () {
}
time ? @a = () : $a = Foo;
- or download this
perl -MO=Deparse -e 'sub Foo() {}; (time ? @a : $a) = Foo();'
- or download this
Assignment to both a list and a scalar at -e line 1, near ");"