##
$conBuild = $funcTable{rss_function};
####
%funcTable = (
....
rss_function => \&actual_rss_function,
...
);
####
...other code...
{
no strict 'refs';
print &$conBuild($data,$file,$num,$ty,1);
}
...other code...