Skip to content

Instantly share code, notes, and snippets.

@crgrieve
Created December 12, 2020 12:39
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 crgrieve/7b930cdece0858cebbb5111ca0c1d598 to your computer and use it in GitHub Desktop.
Save crgrieve/7b930cdece0858cebbb5111ca0c1d598 to your computer and use it in GitHub Desktop.
Top Level Program with method defined
using System;
Console.WriteLine(GetMessage("Glasgow"));
string GetMessage(string meetupName)
{
return String.Format("Welcome to the {0} meetup!", meetupName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment