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

17
pages.zh/common/ocamlc.md Normal file
View File

@@ -0,0 +1,17 @@
# ocamlc
> OCaml 字节码编译器。
> 生成可由 OCaml 解释器运行的可执行文件。
> 更多信息:<https://ocaml.org>。
- 从源文件创建二进制文件:
`ocamlc {{path/to/source_file.ml}}`
- 从源文件创建命名的二进制文件:
`ocamlc -o {{path/to/binary}} {{path/to/source_file.ml}}`
- 自动生成模块签名(接口)文件:
`ocamlc -i {{path/to/source_file.ml}}`