Empty string: Difference between revisions

m
Quite BASIC example added, R edited out of Python and no line between the R header and the language syntax definer
m (Quite BASIC example added, R edited out of Python and no line between the R header and the language syntax definer)
Line 2,030:
print("String is empty")
else:
print("String not empty")</lang>
 
=={{header|RQuiteBASIC}}==
<lang QuiteBASIC>10 let s=""
20 if s="" then let o=""
30 if s<>"" then let o="not "
40 print "The string is ";o;"empty."</lang>
 
=={{header|R}}==
<lang R>s <- ''
 
441

edits