Help for this page

Select Code to Download


  1. or download this
    {
        local our $bob;
    ...
        package OTHER;
        warn "$bob\n";                # > bob
    }
    
  2. or download this
    {
        #local our $bob;
    ...
        warn "$bob\n";                 
        # ERR: Use of uninitialized value $OTHER::bob in concatenation
    }