mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-08 23:48:39 +00:00
16 lines
250 B
C#
16 lines
250 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace HelloWorldApp
|
|
{
|
|
class Program
|
|
{
|
|
static int Main(string[] args)
|
|
{
|
|
Console.WriteLine("Hello");
|
|
return 0;
|
|
}
|
|
}
|
|
}
|