in reply to Re^6: CLI using hashes
in thread CLI using hashes

revdiablo's are full-fledged subs: they accept arguments in exactly the same way named subs do:
my $foo = { my ($first, $second) = @_; print "first argument: [$first]\n"; print "second one : [$second]\n"; } $foo->("bar", "baz");

Flavio (perl -e 'print(scalar(reverse("\nti.xittelop\@oivalf")))')

Don't fool yourself.