Leser: 1
|< 1 2 >| | 11 Einträge, 2 Seiten |
Gast+2008-12-03 12:59:35--Woran liegt es, dass es nicht möglich war, soetwas
[s]If LIST is omitted, pushes $_ onto the end of ARRAY.[/s]
in die push-doc zu schreiben (unausgestrichener)?
1
2
3
4
5
6
7
perl -wle'
@a = (23);
$_ = 42;
push @a;
print for @a'
Useless use of push with no values at -e line 4.
23
Gast+2008-12-04 20:18:14--weil "$_" keine Liste ist?
[perlmonks=728108]why does push not default to $_?[/perlmonks]
|< 1 2 >| | 11 Einträge, 2 Seiten |