in reply to Re^4: Operator overloading with returning lists?
in thread Operator overloading with returning lists?
"List" Is a Four-Letter WordC:\>perl -MData::Dumper -le"print Dumper scalar ( 1, 2 ) " $VAR1 = 2; C:\>perl -MData::Dumper -le"print Dumper scalar ( 1, 2 ) x 5" $VAR1 = '22222'; C:\>perl -MData::Dumper -le"print Dumper 2 x 5" $VAR1 = '22222';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Operator overloading with returning lists?
by LanX (Saint) on Dec 01, 2008 at 15:31 UTC | |
by Anonymous Monk on Dec 01, 2008 at 15:39 UTC | |
by LanX (Saint) on Dec 01, 2008 at 15:58 UTC |