Help for this page

Select Code to Download


  1. or download this
      my $val = $hash{foo};
      return $val if exists $val;
    
  2. or download this
      my @foo = ('a'..'d');
      delete $foo[1]; # delete 'b'.
      my @bar = @foo;
    
      print int exists $foo[1]; # 0
      print int exists $bar[1]; # 1