mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-07 23:18:41 +00:00
14 lines
189 B
C#
14 lines
189 B
C#
using System;
|
|
|
|
namespace HelloWorldApp
|
|
{
|
|
class Program
|
|
{
|
|
static int Main(string[] args)
|
|
{
|
|
Environment.Exit(1);
|
|
return 100;
|
|
}
|
|
}
|
|
}
|