Skip to content

Instantly share code, notes, and snippets.

@majecty
Created March 17, 2016 12:10
Show Gist options
  • Save majecty/a319c025e4c143baf897 to your computer and use it in GitHub Desktop.
Save majecty/a319c025e4c143baf897 to your computer and use it in GitHub Desktop.
using System;
class TestMain
{
public static void Main(string[] args)
{
Console.WriteLine("HI");
Console.WriteLine("1 + 2 = " + Add(left: 1, right: 2));
Console.WriteLine("1 + 2 = " + Add(1, 2));
}
public static int Add(int left, int right)
{
return left + right;
}
}
@zeeshanalisyed
Copy link

O.o

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment