RosettaCodeData/Task/Empty-string/Swift/empty-string.swift
2023-07-01 13:44:08 -04:00

6 lines
113 B
Swift

var s = ""
if s.isEmpty { // alternately, s == ""
println("s is empty")
} else {
println("s is not empty")
}