Add day 6

This commit is contained in:
2022-12-06 15:51:21 +01:00
parent 57002d439a
commit 489ecc6d8d
2 changed files with 74 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ var days = Assembly.GetAssembly(typeof(Day))!.GetTypes()
var select = new SelectionPrompt<Day>()
.Title("[cyan]Select a [yellow]day[/] to run:[/]")
.AddChoices(days);
.AddChoices(days.Reverse());
var selectedDay = AnsiConsole.Prompt(select);