- or download this
#!/usr/bin/perl
...
getInfo($scalar,%hash);
__END__
- or download this
getInfo($scalar,%hash);
- or download this
my ( $thescalar, %thehash ) = @_;
- or download this
sub getInfo {
my ( $thescalar, $thehashref ) = @_;
...
}
getInfo( $scalar, \%hash );
- or download this
sub getInfo {
my ( $thescalar, %thehash ) = @_;
...
}
getInfo( $scalar, %hash );