20 lines
438 B
C#
20 lines
438 B
C#
using System;
|
|
|
|
namespace AoC_2021
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine($"Starting");
|
|
var watch = System.Diagnostics.Stopwatch.StartNew();
|
|
|
|
Luker luker = new();
|
|
luker.Luke1A();
|
|
|
|
watch.Stop();
|
|
Console.WriteLine($"Running time: {watch.ElapsedMilliseconds}ms");
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
} |