From 3f21aab6d78deb960c650f994ead83efe2cdc979 Mon Sep 17 00:00:00 2001 From: Heiko Ludwig Date: Fri, 1 Dec 2023 19:48:26 +0100 Subject: [PATCH] expand template a bit --- program.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/program.py b/program.py index 48aa58e..21bfa48 100755 --- a/program.py +++ b/program.py @@ -8,7 +8,8 @@ def get_lines(filename: str) -> list: def main(): - pass + lines = get_lines("test-input.txt") + # lines = get_lines("input.txt") if __name__ == '__main__':