RosettaCodeData/Task/Hello-world-Standard-error/C-sharp/hello-world-standard-error.cs

8 lines
124 B
C#

static class StdErr
{
static void Main(string[] args)
{
Console.Error.WriteLine("Goodbye, World!");
}
}