mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-06 06:28:39 +00:00
21 lines
300 B
C#
21 lines
300 B
C#
using System;
|
|
|
|
namespace HelloWorldApp
|
|
{
|
|
class Program
|
|
{
|
|
static int Main(string[] args)
|
|
{
|
|
int x = 3;
|
|
try
|
|
{
|
|
return x;
|
|
}
|
|
finally
|
|
{
|
|
x = x + 1;
|
|
}
|
|
}
|
|
}
|
|
}
|