Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    use 5.012;
    ...
    my $instance_ref2 = myDebugger::GetInstance();
    say ref($instance_ref2);
    say $instance_ref2->{foo};
    
  2. or download this
    package myDebugger;
    
    use 5.012;
    ...
        return $debugger //= bless { foo => 'bar' }, 'OLEThingy';
    }
    1;
    
  3. or download this
    OLEThingy
    OLEThingy
    Persistent