This repository has been archived on 2024-10-08. You can view files and clone it, but cannot push or open issues or pull requests.
dungeoneer-cs/scripts/repl.py

14 lines
219 B
Python

def repl_loop():
while True:
raw = input("> ")
if raw == 'exit':
break
parts = raw.split(" ")
command = parts[0]
del parts[0]
if command in repl_commands:
repl_commands[command](parts)
repl_loop()