Help for this page

Select Code to Download


  1. or download this
        sub Foo::show { print 'Foo::show' };
        my %class = ( name => 'Foo' );
        print qq{ $class{name}->show; #};
    
  2. or download this
        sub Foo::show { print 'Foo::show' };
        my %class = ( 'name}' => 'Foo' );
        print qq{ $class{'name}'}->show; #};