in reply to Re^2: adding to hash/writing to file errors
in thread adding to hash/writing to file errors
login($username, %logins);
I believe you might want:
sub login { my $username = shift; my %logins = shift;
You only declare your $time variable in your "greeting" sub, but you use it in the "while" loop.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: adding to hash/writing to file errors
by andrew2325 (Initiate) on May 05, 2008 at 16:02 UTC | |
by toolic (Bishop) on May 05, 2008 at 17:08 UTC |