RosettaCodeData/Task/Empty-string/Nyquist/empty-string-3.nyquist
2023-07-01 13:44:08 -04:00

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.")