Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    if (defined $string) {print "defined\n"};
    print "$string\n";
    close FILE;
    
  2. or download this
    [joev@localhost test]$ ./file_handle.pl
    defined
    
    [joev@localhost test]$