Is it a snow day for the Boulder Valley School District?
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
208 B

9 years ago
9 years ago
9 years ago
  1. #!/usr/bin/env perl
  2. use LWP::Simple;
  3. $page = get('http://www.bvsd.org/');
  4. if ($page =~ /troublebutton/m) {
  5. print "yes.\n";
  6. # `cowsay "SNOW DAY"`;
  7. } else {
  8. print "sorry.\n";
  9. # `cowsay "sorry. :("`;
  10. }