walkingthecow has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use strict; my $user="bobjones"; my $password="abc$123a"; test($user,$password); sub test { my $user = shift; my $password = shift; print "$user - $password\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to deal with subroutine parameters that have $, @, or %?
by james2vegas (Chaplain) on Sep 03, 2009 at 21:20 UTC |