RosettaCodeData/Task/String-comparison/Erlang/string-comparison.erl
2023-07-01 13:44:08 -04:00

12 lines
164 B
Erlang

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