Help for this page

Select Code to Download


  1. or download this
      DB<159> $a=inf
     => "inf"
    ...
    
      DB<162> ++$a  
     => "inf"
    
  2. or download this
      DB<156> $a=inf
     => "inf"
    ...
    
      DB<158> ++$a  
     => "inh"
    
  3. or download this
      DB<174> $a=inf+0
     => "inf"
    ...
    
      DB<176> ++$a  
     => "inf"
    
  4. or download this
     perl -e '$a=inf; print ++$a,"\n"'
    ing