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/lein.md Normal file
View File

@@ -0,0 +1,24 @@
# lein
> 使用声明式配置管理 Clojure 项目。
> 更多信息:<https://leiningen.org>。
- 基于模板生成新项目的脚手架:
`lein new {{template_name}} {{project_name}}`
- 启动一个 REPL 会话,可以是项目会话或独立会话:
`lein repl`
- 运行项目的 `-main` 函数,并可选择性传入参数:
`lein run {{args}}`
- 运行项目的测试:
`lein test`
- 将项目文件及其所有依赖打包成一个 jar 文件:
`lein uberjar`