Help for this page

Select Code to Download


  1. or download this
    package nodeOfSomeKind;
    sub new
    ...
        };
        return bless $node;
    }
    
  2. or download this
    package Globject;
    our %classes;
    ...
        delete $Globject::{$symbolname};        # kill the package global
        return bless($tGlob, $class);
    }
    
  3. or download this
    sub foo
    {
    ...
        # now, within this lexical scope, are these names related
        return $foo;
    }