5 lines
122 B
EmacsLisp
5 lines
122 B
EmacsLisp
(defvar str "" "An empty string")
|
|
|
|
(if (length= str 0)
|
|
(message "string is empty")
|
|
(message "string is not empty"))
|