13 lines
224 B
Text
13 lines
224 B
Text
|
|
import extensions;
|
||
|
|
|
||
|
|
public program()
|
||
|
|
{
|
||
|
|
auto s := emptyString;
|
||
|
|
|
||
|
|
if (s.isEmpty())
|
||
|
|
{ console.printLine("'", s, "' is empty") };
|
||
|
|
|
||
|
|
if (s.isNonempty())
|
||
|
|
{ console.printLine("'", s, "' is not empty") }
|
||
|
|
}
|