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