Update C# Bad test (curly brace should be newline)

This commit is contained in:
Thomas Hughes 2020-08-25 14:31:13 -05:00 committed by GitHub
parent 33872f99a0
commit 7486ddb784
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,9 @@
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(Hello World);
namespace HelloWorld {
class Program {
static void Main(string[] args) {
Console.WriteLine("Hello World");
}
}
}