mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-06 14:38:40 +00:00
14 lines
202 B
C#
14 lines
202 B
C#
using System;
|
|
|
|
namespace HelloWorldApp
|
|
{
|
|
class Program
|
|
{
|
|
static int Main(string[] args)
|
|
{
|
|
Console.WriteLine("Hello, world!");
|
|
return 1;
|
|
}
|
|
}
|
|
}
|