6 lines
117 B
Text
6 lines
117 B
Text
|
|
a="";
|
||
|
|
isEmpty(s)=s=="" \\ Alternately:
|
||
|
|
isEmpty(s)=#s==0
|
||
|
|
isNonempty(s)=s!="" \\ Alternatively:
|
||
|
|
isNonempty(s)=#s
|