Help for this page

Select Code to Download


  1. or download this
    __DATA__
    line1=10
    line2=30
    ...
    line9=67
    line10=Coder
    line11=false
    
  2. or download this
    line12=00
    line2=11
    line3=
    line4=questionable
    
  3. or download this
    my @outfile = (
        "line1=10",
        "line2=30",
    ...
    for my $quad(@quads) {
        print $quad . "\n";  # to console; writing to file "final.txt" is 
    +left as an exercise for OP
    }