RosettaCodeData/Task/Empty-string/Elena/empty-string.elena

13 lines
224 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
import extensions;
2016-12-05 22:15:40 +01:00
2019-09-12 10:33:56 -07:00
public program()
{
auto s := emptyString;
2016-12-05 22:15:40 +01:00
2019-09-12 10:33:56 -07:00
if (s.isEmpty())
{ console.printLine("'", s, "' is empty") };
2016-12-05 22:15:40 +01:00
2019-09-12 10:33:56 -07:00
if (s.isNonempty())
{ console.printLine("'", s, "' is not empty") }
}