in reply to Shorten one liners with Class::Autouse
I admit that using a one liner is extremely rare for me and I am likely missing something. Would you mind giving a more detailed explanation of how this helps or is it just "cool"?perll -e 'print Foo::Bar->blah()' perl -MFoo::Bar -e 'print blah()' perll -e 'print Foo::Bar->blah(), Foo::Bar->asdf()' perl -MFoo::Bar -e 'print blah(), asdf()'
Cheers - L~R
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Shorten one liners with Class::Autouse
by bsb (Priest) on Mar 24, 2007 at 04:47 UTC |