Help for this page

Select Code to Download


  1. or download this
    $ echo 'x=y=1.2; x+=1.1; x-=1.1; x; y; x==y' |bc |xargs echo
    1.2 1.2 1
    
  2. or download this
    $ perl -wle '$x=$y=1.2; $x+=1.1; $x-=1.1; $,=$"; print $x, $y, $x == $
    +y'
    1.2 1.2