RosettaCodeData/Task/Empty-string/Beef/empty-string.beef
2023-07-01 13:44:08 -04:00

20 lines
296 B
Text

using System;
namespace EmptyString
{
class Program
{
public static void Main()
{
String s = scope .();
if (s.IsEmpty)
{
Console.Writeln("string empty");
}
if (!s.IsEmpty)
{
Console.Writeln("string not empty");
}
}
}
}