RosettaCodeData/Task/Empty-string/Beef/empty-string.beef

21 lines
296 B
Plaintext

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");
}
}
}
}