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

View File

@@ -0,0 +1,24 @@
# kotlinc
> Kotlin 编译器。
> 更多信息:<https://kotlinlang.org/docs/command-line.html>。
- 启动 REPL交互式 shell
`kotlinc`
- 编译 Kotlin 文件:
`kotlinc {{path/to/file.kt}}`
- 编译多个 Kotlin 文件:
`kotlinc {{path/to/file1.kt path/to/file2.kt ...}}`
- 执行特定的 Kotlin 脚本文件:
`kotlinc -script {{path/to/file.kts}}`
- 将 Kotlin 文件编译成一个包含 Kotlin 运行时库的自包含 jar 文件:
`kotlinc {{path/to/file.kt}} -include-runtime -d {{path/to/file.jar}}`