Help for this page

Select Code to Download


  1. or download this
    eval {
      weather_subroutine();
    } or do {
      warn $@;
    };  # <-- Note trailing semicolon; it *does* matter
    
  2. or download this
    eval {
      weather_subroutine();
    }
    warn $@ if $@;