Help for this page

Select Code to Download


  1. or download this
    mine @a = (1,2,3);
    
  2. or download this
    my @a;
    my $a = \@a;
    @a = (1,2,3);
    
  3. or download this
    mine @a = (1,2,3);