Advertisement
alkkofficial

Untitled

Jun 24th, 2023
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import aiuci
  2.  
  3.  
  4. def main() -> None:
  5. uciLoop = aiuci.UCI()
  6.  
  7. while True:
  8. command = input()
  9. uciLoop.processCommand(command)
  10.  
  11. if command == "quit":
  12. break
  13.  
  14.  
  15. if __name__ == "__main__":
  16. main()
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement