Paste #19523: Untitled Paste

Date: 2015/08/19 03:01:11 UTC-07:00
Type: Plain Text

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


using System;
using System.Threading.Tasks;

namespace MyProgram
{
    class Main
    {
        static void MainFunction (string[] args)
        {
            Console.WriteLine("Hello world");
            Console.ReadLine();
        }
    }
}