diff --git a/2023/src/template.dart b/2023/src/template.dart index d0bc14b..c1abfe6 100644 --- a/2023/src/template.dart +++ b/2023/src/template.dart @@ -2,9 +2,13 @@ import 'aoc/helper.dart'; String input = ""; -void firstPart() {} +String firstPart() { + return "unsolved"; +} -void secondPart() {} +String secondPart() { + return "unsolved"; +} Future main(List args) async { if (args.isEmpty) { @@ -20,6 +24,6 @@ Future main(List args) async { input = await getInput(year, day); print('Advent of code $year day $day'); - firstPart(); - secondPart(); + print('First part result: ${firstPart()}'); + print('Second part result: ${secondPart()}'); }