Help for this page

Select Code to Download


  1. or download this
    sub v {
      ord($_[0]) - ord('A');
    }
    
    print v('I')*26 + v('V'), "\n";
    
  2. or download this
    shell$ perl ./iv65536
    229
    shell$
    
  3. or download this
    print (v('I')+1)*26 + v('V'), "\n";
    
  4. or download this
    shell$ perl ./iv65536
    9shell$