Research portable Memory game | Исследовать портируемую игру Память
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

30 строки
554B

  1. from cli_Context import *
  2. from llm import *
  3. # Greet the user
  4. @llm_by_value
  5. def cli_greetUser(
  6. c: cli_Context
  7. ) -> cli_Context:
  8. c.outputGreeting = "OGS Memory Textual UI"
  9. c.recentField = "outputGreeting"
  10. return c
  11. #}
  12. # Show help (aka commands)
  13. @llm_by_value
  14. def cli_showHelp(
  15. c: cli_Context
  16. ) -> cli_Context:
  17. if (
  18. c.input == "h" or
  19. c.input == "help"
  20. ):
  21. c.outputHelp = "Commands:\n\te, exit, q, quit\n\t\tExit\n\th, help\n\t\tList commands\n"
  22. c.recentField = "outputHelp"
  23. return c
  24. c.recentField = "none"
  25. return c
  26. #}