Help for this page

Select Code to Download


  1. or download this
    while (<FILE1>) {
      $var = GetVar($_);
    ...
    if ($var eq undef) {
      die "File provided doesn't include var!\n";
    }
    
  2. or download this
    if      ($var eq undef) {
      ...
    ...
    } elsif ($var eq 'foo') {
      ...
    };