mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 12:24:45 +00:00
17 lines
921 B
Markdown
17 lines
921 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=4c490b7f5acd8d2400d61d8a9e4dc0655974babe)
|
|
|
|
`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
|
|
```
|