Thread File::remove: need example (22 answers)
Opened by honky at 2006-05-23 15:04

pq
 2006-05-23 16:51
#66522 #66522
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
[quote=Thorium,23.05.2006, 13:12]qw() heisst quote words, es ist ein Operator welcher also alle nachstehenden Wörter als Elemente eines anonymen Arrays ansieht.[/quote]
qw() ist eine liste. weder ein array noch anynoym, bzw. eine liste ist
sozusagen immer anonym.
deswegen ist z.B. print scalar qw(a b c) was anderes als
@a = qw(a b c); print scalar @a
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread File::remove: need example