9 Einträge, 1 Seite |
Quoteich hab mal eine Frage und zwar wann benutz ich sowas hier:
Code (perl): (dl )&grab(\@domains);
Quoteund wann sowas hier
Code (perl): (dl )&grab(@domains);
1
2
3
4
5
6
sub grab {
$_[0] = "zwei";
}
my @array = ("eins");
grab (@array);
print "@array\n"; # Ausgabe ist zwei
1
2
3
4
5
6
7
perl -wle'
@a = qw(a b c);
print \$a[0];
sub test { print \$_[0]; }
test(@a)'
SCALAR(0x8151c20)
SCALAR(0x8151c20)
1
2
3
4
5
6
7
8
E:\work\projects>perl
use warnings; use strict;
&TestError( 1 );
sub TestError {
$_[0] = 2;
}
^D
Modification of a read-only value attempted at - line 4.
9 Einträge, 1 Seite |