Simple types / Strings

# Empty strings
someEmptyString = ""
anotherEmptyString = ''

if someEmptyString.empty?
puts "string is empty"
end

if anotherEmptyString.length == 0
puts "another string is empty"
end