mirror of
https://github.com/iminet/dev.git
synced 2025-04-20 12:15:48 +02:00
12 lines
192 B
C#
12 lines
192 B
C#
// C# sample file
|
|
namespace HelloWorld
|
|
{
|
|
class Hello
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
System.Console.WriteLine("Hello World!");
|
|
}
|
|
}
|
|
}
|