Skip to content

Instantly share code, notes, and snippets.

@mattcanty
Last active August 29, 2015 14:02
Show Gist options
  • Save mattcanty/d3cc39acd1f7f37ded20 to your computer and use it in GitHub Desktop.
Save mattcanty/d3cc39acd1f7f37ded20 to your computer and use it in GitHub Desktop.
A demonstrative HelloWorld app for Wordpress blogpost - http://bassbytesandbicycles.wordpress.com/2014/06/24/i-am-a-programmer-or-developer/
public class Hello
{
public static void Main(string[] args)
{
if (args.Length > 0)
{
System.Console.WriteLine("Hello, " + args[0] + "!");
}
else
{
System.Console.WriteLine("Hello, World!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment