What is the difference between the next two lines in Perl:
PopupMsg("Hello");
&PopupMsg("Hello");
...
sub PopupMsg
{
subroutines code here...
}
please notice that in some cases I must use the first line and in some the second, other wise I get an error.