Research portable Memory game | Исследовать портируемую игру Память
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
473B

  1. from llm import *
  2. def llm_test_isDigit_digit(
  3. ) -> str:
  4. if (
  5. llm_isDigit("123")
  6. ):
  7. return "OK: llm_isDigit_digit"
  8. #}
  9. return "ERR: llm_isDigit_digit"
  10. #}
  11. def llm_test_isDigit_notDigit(
  12. ) -> str:
  13. if (
  14. llm_isDigit("abc")
  15. ):
  16. return "ERR: llm_isDigit_notDigit"
  17. #}
  18. return "OK: llm_isDigit_notDigit"
  19. #}
  20. def llm_test_strToInt(
  21. ) -> str:
  22. if (
  23. llm_strToInt("123") == 123
  24. ):
  25. return "OK: llm_strToInt"
  26. #}
  27. return "ERR: llm_strToInt"
  28. #}