let var str1 := "wow" var str2 := "owo" in if str1 < str2 then print("strictly lower"); if str1 <= str2 then print("lower"); if str1 = str2 then print("equal"); if str1 >= str2 then print("higher"); if str1 > str2 then print("strictly higher") end