- or download this
sub normalise{
my $network_device_polling_data = shift;
...
...;
return $network_device_polling_data;
}
- or download this
sub normalise_network_device_polling_data {
my $data = shift;
...
...;
return $data;
}
- or download this
sub normalise_network_device_polling_data {
die "This is a procedure not a function" if defined wantarray;
...
$_ = quotemeta;
}
}