Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    my $array = [qw(this is a test to check anonymous arrays)];
    print "@{$array}\n";
    print "$array->[3]\n"
    
  2. or download this
    C:\perl\practice>perl ref2.pl
    this is a test to check anonymous arrays
    test