home *** CD-ROM | disk | FTP | other *** search
/ .net Business / NETB01.ISO / pc / PCSoftware / ASP Edit 2000 / _SETUP.1 / helloworld.cs < prev    next >
Encoding:
Text File  |  2000-08-24  |  104 b   |  8 lines

  1. using System;
  2. class Hello
  3. {
  4.   static void Main() {
  5.     Console.WriteLine("Hello, World!");
  6.   }
  7. }
  8.