Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FirstConsoleProject
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args) // this is a method called "Main". It is called when the program starts.
  8.         {
  9.             Console.WriteLine("Hello, I'm a computer, I'm sent from the future.");
  10.             Console.ReadKey ();
  11.         }
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement