Empty string: Difference between revisions

Content added Content deleted
(Add Seed7 example)
Line 254:
if s:
print('String s is not empty.')</lang>
 
=={{header|Seed7}}==
<lang seed7># assign empty string to a variable
s := ""
 
# check that string is empty
s = ""
 
# check that string is not empty
s <> ""</lang>
 
=={{header|Tcl}}==