Help for this page

Select Code to Download


  1. or download this
    # print "@firstLine1\n"; # All values print fine! MAYBE
    # print "@firstLine2\n"; # All values print fine!
    print '##',join('##',@firstLine1),"##\n";
    print '##',join('##',@firstLine2),"##\n";
    
  2. or download this
    use Data::Dumper;
    # print "@firstLine1\n"; # All values print fine! MAYBE
    print Dumper(@firstLine1);