in reply to Re: use slack;in thread use slack;
my $in = param('in'); my %actions = ( this => \&this, that => \&that, foo => \&foo, bar => \&bar, zzz => \&sleepytime, ); defined(my $sub_ref = $actions{$in}) && $sub_ref->() ; [download]