home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 March / PCWorld_2001-03_cd.bin / Software / TemaCD / C#ed / Setup.exe / HelloWorld.cs < prev    next >
Text File  |  2000-08-23  |  119b  |  11 lines

  1.  
  2. using System;
  3.  
  4. class HelloWorld
  5. {
  6.     public static void Main() 
  7.     {
  8.         Console.WriteLine("Hello, world!");
  9.     }
  10. }
  11.