Help for this page

Select Code to Download


  1. or download this
    $ perl -le'sub f { print("@_"); } f (5) + 4'
    5
    
  2. or download this
    $ perl -wle'sub f { print("@_"); } f (5) + 4'
    Useless use of addition (+) in void context at -e line 1.
    5
    
  3. or download this
    print (v('I')+1)*26 + v('V'), "\n";
    
  4. or download this
    print( v('I')+1 )
       * 26
          + v('V'),
    "\n";