Help for this page

Select Code to Download


  1. or download this
    for (1..4) {
       if (glob($0)) {
    ...
          print("I don't exist\n");
       }
    }
    
  2. or download this
    I exist
    I don't exist
    I exist
    I don't exist
    
  3. or download this
    for (1..4) {
       if (() = glob($0)) {
    ...
          print("I don't exist\n");
       }
    }
    
  4. or download this
    for (1..4) {
       if (-e $0) {
    ...
          print("I don't exist\n");
       }
    }
    
  5. or download this
    I exist
    I exist
    I exist
    I exist