Help for this page

Select Code to Download


  1. or download this
    open(F, ">foo.txt") or die "hey, couldn't open foo.txt";
    
  2. or download this
    if (!open(F, ">foo.txt")) {
       die "hey, couldn't open foo.txt";
    }
    
  3. or download this
    # does not work
    die "missing arg $_" unless $args{$_} for (qw(foo bar baz boop));
    
  4. or download this
    # untested
    for (qw(foo bar baz boop)) {
      die "missing arg $_" unless $args{$_};
    }