Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
      next unless $w-2*$x+$y or $x-2*$y+$z;
      print "$w, $x, $y, $z\n";
    }
    
  2. or download this
    while(1){
        my ( $z, $y, $x, $w ) = @{ $iter->next // last };
        ...
    }