Created
February 4, 2017 07:09
-
-
Save mallibone/1ad910cda776aac441ea20c5ff163afb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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