add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

24
pages.zh/common/mix.md Normal file
View File

@@ -0,0 +1,24 @@
# mix
> 提供用于创建、编译和测试 Elixir 项目的构建工具,管理其依赖关系等。
> 更多信息:<https://hexdocs.pm/mix>。
- 执行特定文件:
`mix run {{my_script.exs}}`
- 创建新项目:
`mix new {{project_name}}`
- 编译项目:
`mix compile`
- 运行项目测试:
`mix test`
- 显示帮助:
`mix help`