mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-07 15:08:40 +00:00
23 lines
338 B
C#
23 lines
338 B
C#
using System;
|
|
|
|
namespace HelloWorldApp
|
|
{
|
|
class Program
|
|
{
|
|
static int Main(string[] args)
|
|
{
|
|
int x = 3;
|
|
try
|
|
{
|
|
throw new Exception("hello");
|
|
}
|
|
catch
|
|
{
|
|
x += 1;
|
|
}
|
|
|
|
return x;
|
|
}
|
|
}
|
|
}
|