diff --git a/2023/src/template.dart b/2023/src/template.dart index d0bc14b..c6e2fbb 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 ""; +} -void secondPart() {} +String secondPart() { + return ""; +} 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 resullt ${firstPart()}'); + print('Second part resullt ${secondPart()}'); }