8 lines
114 B
Text
8 lines
114 B
Text
|
|
var string
|
||
|
|
string = ""
|
||
|
|
if eq string ""
|
||
|
|
print "The string is empty."
|
||
|
|
else
|
||
|
|
print "The string is not empty."
|
||
|
|
endif
|