Thread Array in sub belegen, wie geht das kürzer? (8 answers)
Opened by Crian at 2005-01-28 16:49

coax
 2005-01-28 17:50
#51402 #51402
User since
2003-08-11
457 Artikel
BenutzerIn
[default_avatar]
Code: (dl )
1
2
3
4
5
6
7
    sub fuelle_array (\@) {
       @{$_[0]} = qw(aaa bbb ccc ddd eee fff);
   }
   
   fuelle_array(my @array);

   print "$_\n" for @array;


Grusz Christian.
,,Das perlt aber heute wieder...'' -- Dittsche

View full thread Array in sub belegen, wie geht das kürzer?