Help for this page

Select Code to Download


  1. or download this
    my $var1 : shared('a') = 3;
    my $var2 : shared('a');
    my $var3 : shared('b') = 10;
    
  2. or download this
    my $done : shared = 0;
    my $results : shared;
    ...
    if( $done ) {
        ## use $results;
    }
    
  3. or download this
    my $start = time();
    my $content : shared;
    ...
        ## shutdown the socket
    }
    ## use the $content.