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

8 lines
124 B
C#
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
static class StdErr
{
static void Main(string[] args)
{
Console.Error.WriteLine("Goodbye, World!");
}
}