Help for this page

Select Code to Download


  1. or download this
    use threads::shared;
    my $HS : shared; # compile time declaration
    $HS = new Something();
    
  2. or download this
    use threads::shared;
    $HS = new Something();
    share($HS);