12 lines
223 B
Python
12 lines
223 B
Python
from lib import *
|
|
|
|
holesailKey = "Holesail has not been started"
|
|
|
|
while True:
|
|
result = mainMenuHandling(mainMenu())
|
|
|
|
if result != 1 and result != 0:
|
|
holesailKey = result
|
|
|
|
print("Key: ", holesailKey)
|