Skip to content

Instantly share code, notes, and snippets.

@merken
Created April 2, 2021 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save merken/35da81bc913101fb857153da18b978a7 to your computer and use it in GitHub Desktop.
Save merken/35da81bc913101fb857153da18b978a7 to your computer and use it in GitHub Desktop.
Initial hello world
using System;
namespace ConsoleToWeb
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!"); // => This needs to be converted into a web app
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment