7 lines
92 B
Python
7 lines
92 B
Python
def main():
|
|
print("Hello from advent-of-code!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|