Research portable Memory game | Исследовать портируемую игру Память
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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