Skip to content

Instantly share code, notes, and snippets.

@hdmdhr
Last active February 20, 2022 21:42
Show Gist options
  • Save hdmdhr/4dd472f06f836c62e64bb110e96b67d0 to your computer and use it in GitHub Desktop.
Save hdmdhr/4dd472f06f836c62e64bb110e96b67d0 to your computer and use it in GitHub Desktop.
C# Program Main Hello World
namespace SolidVendingMachine
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment