Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
sub join {
my ($channel) = @_;
$irc->join ($channel);
}
join ("#lobby");
Perl warns
"Ambiguous call to subroutine resolved as main::join() at script.pl line X"
&join ("#lobby");
no Perl warning for that
callng a sub withOUT ()
But overloading the built-in functions with same-named ones of your own devising (on purpose) sounds like a really bad idea...