Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warning;
    use xyz;
    
    print @array;
    
  2. or download this
    package xyz;
    
    ...
    my $file = "qwerty.txt";
    open FILE, "< $file";
    my @array = <FILE>;