Advertisement
paulogp

Hello World

Jul 13th, 2011
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.17 KB | None | 0 0
  1. // hello.cs
  2. // paulogp
  3. using System;
  4.  
  5. public class Hello
  6. {
  7.     public static int Main(string[] args)
  8.     {
  9.         Console.WriteLine("Hello, World!");
  10.  
  11.         return 0;
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement