7 lines
87 B
Python
7 lines
87 B
Python
def main():
|
|
print("Hello from dronewars!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|