Empty string: Difference between revisions

Line 639:
print "The string is not empty"
end</lang>
 
=={{header|Maple}}==
s := ""; # Create an empty string
evalb(s = ""); # test if the string is empty
evalb(s <> ""); # test if the string is not empty
 
=={{header|Mathematica}}==
Anonymous user