Help for this page

Select Code to Download


  1. or download this
    print Util::Stuff::aaa1->flag; # yields 10
    ...
    ...
    ...
    our $v = 'Util::Stuff::aaa1->flag';
    print "$$v\n";                 # yields nothing
    
  2. or download this
    our $v = 'Util::Stuff::aaa1';
    print $v->flag;