RosettaCodeData/Task/Empty-string/EasyLang/empty-string.easy
2023-07-01 13:44:08 -04:00

7 lines
70 B
Text

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