in reply to Compare two signed integers without using comparision operator in perl
artist
($a == $b) ? print "equal" : ( ($a < $b) ? print "a is small" : print + "b is small"); [download]