Help for this page

Select Code to Download


  1. or download this
    open (PASSWD "+</.stickum.txt");
    
  2. or download this
    open (PASSWD, "+</.stickum.txt");
    
  3. or download this
    "+</.stickum.txt"
    
  4. or download this
    "+>>/.stickum.txt"
    
  5. or download this
    print "What is the new passord?\n";
    feistal($password);
    
  6. or download this
    print "What is the new passord?\n";
    $password = <STDIN>;
    feistal($password);
    
  7. or download this
    sub user{
        print "Account name:\n";
    ...
               &query;
               }
    } #corrected comile error
    
  8. or download this
    sub user{
        print "Account name: ";
    ...
        }
        &query
    }