if (2 gt 10) { #since gt needs strings, Perl promotes 2 & 10 to strings
    print "text '2' is greater than text '1' which starts '10'\n";
}
if (2 < 10) {
        print "numeric 2 is less than numeric 10\n";
}
