mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-09 15:58:39 +00:00
14 lines
260 B
C#
14 lines
260 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace HelloWorldApp
|
|
{
|
|
class Program
|
|
{
|
|
static async System.Threading.Tasks.Task<int> Main(string[] args)
|
|
{
|
|
var result = await Task.Run(() => 3);
|
|
return result;
|
|
}
|
|
}
|
|
}
|