Help for this page

Select Code to Download


  1. or download this
    # an object could manipulate itself
    &$object("add-msg", "get-self", sub {return $object});
    
  2. or download this
    my $object = make_object();
    &$object("add-msg", "get-self", sub {return $object});
    ...
    print &$copy("get-self"), "\n";
    $object = 42;
    print &$copy("get-self"), "\n";
    
  3. or download this
    CODE(0x18350d8)
    42