RosettaCodeData/Task/Empty-string/EasyLang/empty-string.easy

8 lines
70 B
Plaintext

a$ = ""
if a$ = ""
print "empty"
.
if a$ <> ""
print "no empty"
.