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

7 lines
103 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
s := "";
if(s->IsEmpty()) {
"s is empty"->PrintLine();
} else{
"s is not empty"->PrintLine();
};