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