Compare commits

2 Commits

2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[project]
name = "markov"
version = "0.0.1"
version = "0.1.0"
description = ""
authors = [
{name = "ElectronixTM"}

View File

@ -15,7 +15,10 @@ def interactve_mode(rulebook: Rulebook):
print("To get help type \"h:\" in prompt")
_print_rules(rulebook.rules)
while True:
try:
user_input = input("#> ")
except EOFError:
return
if user_input.startswith("h:"):
print_help()
elif user_input.startswith("r:"):