adventofcode/2022/template.py
2022-12-01 18:13:18 +01:00

10 lines
134 B
Python
Executable File

#!/usr/bin/env python3
INPUT_FILE = 'input'
def main():
with open(INPUT_FILE, 'r') as f:
if __name__ == '__main__':
main()