Initialize a dart project

This commit is contained in:
2025-11-29 12:21:39 -06:00
commit 69eaea8d09
9 changed files with 458 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import 'package:adventofcode2025/adventofcode2025.dart' as adventofcode2025;
void main(List<String> arguments) {
print('Hello world: ${adventofcode2025.calculate()}!');
}