RosettaCodeData/Task/Hello-world-Standard-error/C-sharp/hello-world-standard-error.cs
2023-07-01 13:44:08 -04:00

7 lines
124 B
C#

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