1 2 3 4 5 6 7 8
{ eq = "test" == "test"; ne = "test" != "not test"; lt = "abc" < "bcd"; le = "bcd" <= "bcd"; gt = "bcd" > "abc"; ge = "bcd" >= "bcd"; }