You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3 lines
171 B
Perl

$result = "123" < "45"; #the strings 123 and 45 are converted to integers, and 123 is compared to 45.
$result = "123" lt "45"; #123 is alphabetically compared to 45.