RosettaCodeData/Task/Empty-string/Emacs-Lisp/empty-string-2.el

6 lines
122 B
EmacsLisp
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
(defvar str "" "An empty string")
(if (length= str 0)
(message "string is empty")
(message "string is not empty"))