mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 12:24:45 +00:00
17 lines
801 B
Markdown
17 lines
801 B
Markdown
# REPL
|
|
|
|
[](https://gezf7g7pd5.execute-api.ap-northeast-1.amazonaws.com/default/source_up_to_date?owner=erg-lang&repos=erg&ref=main&path=doc/EN/tools/repl.md&commit_hash=d15cbbf7b33df0f78a575cff9679d84c36ea3ab1)
|
|
|
|
运行不带参数的 `erg` 命令会调用 REPL。它也可以用 `repl` 子命令调用
|
|
此外,您可以指定以下标志:
|
|
|
|
* show-type: 显示对象及其类型
|
|
|
|
```console
|
|
$ erg repl --show-type
|
|
Erg interpreter ... (tags/?:, ...) on ...
|
|
>>> 1
|
|
1: {1}
|
|
>>> id x = x
|
|
id = <function id>: |T: Type| T -> T
|
|
```
|