Help for this page

Select Code to Download


  1. or download this
    # Return the list of dead cells surrounding a cell
    sub get_dead_cells {
    ...
         ( $k8 = "$x2:$y2" ) x !( 0 + exists $cells->{ $k8 } ) );
    }
    
  2. or download this
    use feature 'state';
    
    ...
         ( $k8 = "$x2:$y2" ) x !( 0 + exists $cells->{ $k8 } ) );
    }