Help for this page

Select Code to Download


  1. or download this
    my $Object = ObjectMaker->new();
    Foo::DoSomething(foo, bar, $Object);
    $Object->MethodName(blah);
    
  2. or download this
    DoSomething(foo, bar, \$Object);
    print $Object; # prints "42"
    ...
       my $Object = shift;
       $$Object = 42;
    }