Start day 2

This commit is contained in:
2025-12-04 09:41:32 -06:00
parent 47083ae033
commit 096d329457
5 changed files with 104 additions and 0 deletions

View File

@@ -1,9 +1,11 @@
import 'package:adventofcode2025/day1/command.dart' as day1;
import 'package:adventofcode2025/day2/command.dart' as day2;
import 'package:args/command_runner.dart';
void main(List<String> arguments) {
CommandRunner("adventofcode2025", "Advent of Code 2025 solutions")
..addCommand(day1.Day1Command())
..addCommand(day2.Day2Command())
..run(arguments);
}