Help for this page

Select Code to Download


  1. or download this
    foreach(`cat file.pl`){
     foreach(split(//,)){
    ...
    
    
    }
    
  2. or download this
    foreach(`cat file.pl`){
    print ord foreach(split(//,));
    }
    
  3. or download this
    print ord foreach(split(//,)) foreach(`cat file.pl`);