Help for this page

Select Code to Download


  1. or download this
    sub draw_grid {
        print "# Wacky Fun Minesweeper!!!!\n";
    ...
            print "\n";
        }
    }
    
  2. or download this
        for my $x (1..9) {
            for my $y (1..9) {
    ...
                $grid[$x][$y] = 0;
            }
        }