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

@@ -0,0 +1,24 @@
# Racket
> Racket 语言解释器。
> 更多信息:<https://racket-lang.org>。
- 启动 REPL交互式 shell
`racket`
- 执行 Racket 脚本:
`racket {{path/to/script.rkt}}`
- 执行 Racket 表达式:
`racket --eval "{{expression}}"`
- 作为脚本运行模块(终止选项列表):
`racket --lib {{module_name}} --main {{arguments}}`
-`typed/racket` 哈希语言启动 REPL交互式 shell
`racket -I typed/racket`