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

@@ -0,0 +1,24 @@
# 方案
> MIT Scheme 语言解释器和 REPL交互式外壳
> 更多信息:<https://www.gnu.org/software/mit-scheme>。
- 启动 REPL交互式外壳
`scheme`
- 运行一个 scheme 程序(没有 REPL 输出):
`scheme --quiet < {{script.scm}}`
- 将一个 scheme 程序加载到 REPL 中:
`scheme --load {{script.scm}}`
- 将 scheme 表达式加载到 REPL 中:
`scheme --eval "{{(define foo 'x)}}"`
- 在静默模式下打开 REPL
`scheme --quiet`