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

13 lines
224 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import extensions;
2026-02-01 16:33:20 -08:00
public Program()
2023-07-01 11:58:00 -04:00
{
auto s := emptyString;
if (s.isEmpty())
2025-08-11 18:05:26 -07:00
{ Console.printLine("'", s, "' is empty") };
2023-07-01 11:58:00 -04:00
if (s.isNonempty())
2025-08-11 18:05:26 -07:00
{ Console.printLine("'", s, "' is not empty") }
2023-07-01 11:58:00 -04:00
}