my $propertyHash = readFileIntoHash($globalFormPageCfgFile); if ($propertyHash) { # steht was drin. defined ist hier im prinzip unnötig, test auf wahrheit reicht print "\n\$property is defined \n it contains " . keys(%$propertyHash) ."\n" ; $propertyHash->{pageCount} = $pageSizeForForm; } sub readFileIntoHash { ... return \%exportHash; ... else { return; } }