diff --git a/.automation/test/csharp/csharp_good_01.cs b/.automation/test/csharp/csharp_good_01.cs index b17954e5..a68542dc 100644 --- a/.automation/test/csharp/csharp_good_01.cs +++ b/.automation/test/csharp/csharp_good_01.cs @@ -2,11 +2,11 @@ using System; namespace HelloWorld { - class Program - { - static void Main(string[] args) + class Program { - Console.WriteLine("Hello World!"); + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } } - } }