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

8 lines
70 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a$ = ""
if a$ = ""
print "empty"
.
if a$ <> ""
print "no empty"
.