mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-06 06:28:39 +00:00
25 lines
375 B
C#
25 lines
375 B
C#
using System;
|
|
|
|
namespace HelloWorldApp
|
|
{
|
|
class Program
|
|
{
|
|
static int ReallyMain(string[] args)
|
|
{
|
|
return 10;
|
|
}
|
|
|
|
static int Main(string[] args)
|
|
{
|
|
try
|
|
{
|
|
return ReallyMain(args);
|
|
}
|
|
catch
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
}
|
|
}
|