Skip to content

Commit

Permalink
Merge pull request #22 from dumazy/feat/aoc-2024
Browse files Browse the repository at this point in the history
  • Loading branch information
S-ecki authored Nov 29, 2024
2 parents 829d473 + 2d85355 commit 9ff1734
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
"name": "AdventOfCode-2023",
"name": "AdventOfCode-2024",
"request": "launch",
"type": "dart",
"program": "main.dart"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# AdventOfCode-Starter-Dart

This is a Starter project for [AdventOfCode](https://adventofcode.com/2023), written in `Dart`. Feel free to use it for your own adventures with the christmas-themed puzzles!
This is a Starter project for [AdventOfCode](https://adventofcode.com/2024), written in `Dart`. Feel free to use it for your own adventures with the christmas-themed puzzles!

## How to use

Expand Down
2 changes: 1 addition & 1 deletion day_generator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import 'tool/session_token.dart';
/// Small Program to be used to generate files and boilerplate for a given day.\
/// Call with `dart run day_generator.dart <day>`
void main(List<String?> args) async {
const year = '2023';
const year = '2024';
final session = getSessionToken();

if (args.length > 1) {
Expand Down

0 comments on commit 9ff1734

Please sign in to comment.