RosettaCodeData/Task/Empty-string/Elixir/empty-string.elixir
2015-02-20 00:35:01 -05:00

12 lines
197 B
Text

empty_string = ""
not_empty_string = "a"
empty_string == ""
# => true
String.length(empty_string) == 0
# => true
not_empty_string == ""
# => false
String.length(not_empty_string) == 0
# => false