7 lines
238 B
Text
7 lines
238 B
Text
|
|
/# Rosetta Code problem: http://rosettacode.org/wiki/Empty_string
|
||
|
|
by Galileo, 10/2022 #/
|
||
|
|
|
||
|
|
"" var s
|
||
|
|
s len if "String is NOT empty" else "String IS empty" endif print nl
|
||
|
|
" " "" == if "String IS empty" else "String is NOT empty" endif print
|