10> V = "abcd".
"abcd"
11> V =:= "abcd".
true
12> V =/= "abcd".
false
13> V < "b".
15> V > "aa".
16> string:to_lower(V) =:= string:to_lower("ABCD").