コード例 #1
0
ファイル: Program.cs プロジェクト: Jesseppi/AdventOfCode2020
        static void Main(string[] args)
        {
            var instructions = CodeRunner.GetInstructions(HandHeld.Commands);
            // var globalValue = CodeRunner.GetInfiniteLoopValue(instructions);
            // Console.WriteLine(globalValue);

            var finishValue = CodeRunner.ProgramRunner(instructions);

            Console.WriteLine(finishValue);
        }