Help for this page

Select Code to Download


  1. or download this
    >perl -le"print 1 == '1.0' ?1:0"
    1
    
    >perl -le"print 1 eq '1.0' ?1:0"
    0
    
  2. or download this
    >perl -le"print 2 < 10 ?1:0"
    1
    
    >perl -le"print 2 lt 10 ?1:0"
    0