Skip to content

Instantly share code, notes, and snippets.

@mallibone
Created February 4, 2017 07:09
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 mallibone/1ad910cda776aac441ea20c5ff163afb to your computer and use it in GitHub Desktop.
Save mallibone/1ad910cda776aac441ea20c5ff163afb to your computer and use it in GitHub Desktop.
using System;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
string name = "Harvey Specter";
int number = 42;
Console.WriteLine($"Hello {name}, your number is {number}");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment