Help for this page

Select Code to Download


  1. or download this
    sub alert {
       my $mesg = shift;
    ...
    }
    
    alert("Don't do that!");
    
  2. or download this
    sub quote {
        my $str = shift;    
    ...
        $str =~ s/'/\\'/g;
        return $str;
    }