Help for this page

Select Code to Download


  1. or download this
    sub foo { CORE::say "ok" }
    my %h;
    ...
    my $ref2 = \%h;
    bless($ref1);
    $ref2->foo();
    
  2. or download this
    $ perl -MScalar::Util=reftype -e'
       CORE::say ref(\*FOO);
    ...
    GLOB
    main
    GLOB