Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
... my %general = ( data => sub { info( who=> $q->param('who') || '', why=> $q->param('why') || '', ) }, results => sub { names( first => $q->param('first'), zip => $q->param('zip'), ) }, sub { info( who => $q->param('who') || '', why => $q->param('why') || '', ) }, ); ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Call to subs in a Dispatch Table
by jeffa (Bishop) on May 06, 2015 at 19:41 UTC | |
|
Re: Call to subs in a Dispatch Table
by Laurent_R (Canon) on May 07, 2015 at 22:13 UTC | |
|
Re: Call to subs in a Dispatch Table
by soonix (Chancellor) on May 08, 2015 at 11:50 UTC | |
by AnomalousMonk (Archbishop) on May 08, 2015 at 13:54 UTC | |
by AnomalousMonk (Archbishop) on May 10, 2015 at 07:23 UTC |