hello-world/c#/helloworld.cs

10 lines
154 B
C#
Raw Normal View History

2024-04-04 20:27:23 +00:00
//compiles and runs successfully
using System;
public class GFG {
static public void Main()
{
Console.WriteLine("Hello World!");
}
}