RosettaCodeData/Task/Empty-string/Objeck/empty-string.objeck

7 lines
103 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
s := "";
if(s->IsEmpty()) {
"s is empty"->PrintLine();
} else{
"s is not empty"->PrintLine();
};