Files
advent-of-code-2023/05/IYGASAF/Program.cs
T

9 lines
144 B
C#
Raw Normal View History

2023-12-05 16:17:38 -06:00
namespace IYGASAF;
public class Program
{
public static async Task<int> Main(string[] args)
{
return await Task.FromResult(0);
}
}