Research portable Memory game | Исследовать портируемую игру Память
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

22 lignes
343B

  1. from llm import *
  2. from memory_Context import *
  3. def llm_test_Python_copyByValue(
  4. ) -> str:
  5. c = memory_createContext()
  6. c.input = "abc"
  7. @llm_by_value
  8. def alterValue(c):
  9. c.input = "alteredValue"
  10. alterValue(c)
  11. if (
  12. c.input == "abc"
  13. ):
  14. return "OK: llm_Python_copyByValue"
  15. #}
  16. return "ERR: llm_Python_copyByValue"
  17. #}