Help for this page

Select Code to Download


  1. or download this
    ($a, $b) = ( '16:46:36', '16:00:00');
    
    print 'cmp : ', $a cmp $b, "\n";
    print '<=> : ', $a <=> $b, "\n";
    
  2. or download this
    cmp : 1
    <=> : 0