16 lines
190 B
C#
16 lines
190 B
C#
|
12 years ago
|
using System;
|
||
|
|
using System.IO;
|
||
|
|
using System.Threading;
|
||
|
|
|
||
|
|
namespace vscadm
|
||
|
|
{
|
||
|
|
class MainClass
|
||
|
|
{
|
||
|
|
public static void Main (string[] args)
|
||
|
|
{
|
||
|
|
Console.WriteLine ("Hello World!");
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|