Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import aiuci
- def main() -> None:
- uciLoop = aiuci.UCI()
- while True:
- command = input()
- uciLoop.processCommand(command)
- if command == "quit":
- break
- if __name__ == "__main__":
- main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement