Research portable Memory game | Исследовать портируемую игру Память
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
406B

  1. from memoryCLI_Context import *
  2. from llm import *
  3. # Greet the user.
  4. #
  5. # Conditions:
  6. # 1. No input is present (the app just got launched)
  7. @llm_by_value
  8. def memoryCLI_greetUser(
  9. c: memoryCLI_Context
  10. ) -> memoryCLI_Context:
  11. if (
  12. c.input == ""
  13. ):
  14. c.output = "OGS Memory TextUI greets you, %USERNAME%. Let's play!"
  15. c.recentField = "output"
  16. return c
  17. c.recentField = "none"
  18. return c
  19. #}