in reply to Re^4: How to store an array in the store of Bot::BasicBot::Pluggable::Module?
in thread How to store an array in the store of Bot::BasicBot::Pluggable::Module?
Returning an array works too, you just have to provide list context on the calling side, i.e.
sub x { ... return @f; } my @r= x(...);
would work. You don't need the concatenation
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: How to store an array in the store of Bot::BasicBot::Pluggable::Module?
by brengo (Acolyte) on Jan 23, 2011 at 02:22 UTC |