Files
aoc_2024/hello.py
2024-12-01 13:24:01 +01:00

7 lines
86 B
Python

def main():
print("Hello from aoc-2024!")
if __name__ == "__main__":
main()