Help for this page

Select Code to Download


  1. or download this
    sub print_variable {
        local *print_variable = $_[0];
    ...
    __END__
    firstname = Edward
    var = 1
    
  2. or download this
    $firstname = "Edward";
    *surname = *firstname;
    ...
    __END__
    firstname = Edward
    surname = Edward