Empty string: Difference between revisions

m (→‎{{header|NetRexx}}: Reorder tests)
Line 148:
}
}
</lang>
 
=={{header|Clojure}}==
<lang clojure>
(def x "") ;assign x to the empty string
(= x "") ;true if x is the empty string
(not= x "") ;true if x is not the empty string
</lang>