RosettaCodeData/Task/Empty-string/Emacs-Lisp/empty-string-2.el
2026-04-30 12:34:36 -04:00

5 lines
122 B
EmacsLisp

(defvar str "" "An empty string")
(if (length= str 0)
(message "string is empty")
(message "string is not empty"))