10 lines
234 B
Text
10 lines
234 B
Text
;nyquist plug-in
|
|
;version 4
|
|
;type tool
|
|
;name "Empty string"
|
|
|
|
(setq emptystring "") ;; Define global variable
|
|
|
|
(if (string= emptystring "") ;;case sensitive string comparison
|
|
"The string is empty."
|
|
"The string is not empty.")
|