7 lines
78 B
Python
7 lines
78 B
Python
def main() -> None:
|
|
print("test")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|