Help for this page

Select Code to Download


  1. or download this
    use threads;
    use threads::shared;
    ...
    print Dumper($a);
    share($a);
    print Dumper($a);
    
  2. or download this
    $VAR1 = [
              1,
              2
            ];
    $VAR1 = [];
    
  3. or download this
    use threads;
    use threads::shared;
    ...
    print Dumper($a);
    share($a->[0]);
    print Dumper($a);
    
  4. or download this
    $VAR1 = [
              1,
    ...
              '1',#look at this
              2
            ];