4 Einträge, 1 Seite |
1
2
3
4
5
6
use threads;
use threads::shared;
my @array : shared;
push( @array, [("wert1", "wert2")]);
QuoteA variable can also be marked as shared at compile time by using the "shared" attribute: "my $var : shared". (perldoc threads::shared)
4 Einträge, 1 Seite |