Empty string: Difference between revisions

m
Nyquist has been added.
m (Nyquist has been added.)
Line 1,444:
if x.len > 0:
echo "not empty"</lang>
 
=={{header|Nyquist}}==
Audacity plugin
<lang Nyquist>;nyquist plug-in
;version 1
;type tool
;name "Empty string"
;debugflags trace
define variable string = ""
if string = "" then
begin
print "The string is empty."
end
else
begin
print "The string isn't empty."
end
return ""</lang>
 
=={{header|oberon-2}}==
441

edits