Research portable Memory game | Исследовать портируемую игру Память
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. #}