mirror of
https://github.com/erg-lang/erg.git
synced 2025-10-01 13:11:11 +00:00
14 lines
831 B
Markdown
14 lines
831 B
Markdown
# 程序
|
|
|
|
[](https://gezf7g7pd5.execute-api.ap-northeast-1.amazonaws.com/default/source_up_to_date?owner=erg-lang&repos=erg&ref=main&path=doc/EN/syntax/08_procedure.md&commit_hash=51de3c9d5a9074241f55c043b9951b384836b258)
|
|
|
|
处理可变对象时需要过程,但将可变对象作为参数并不一定使其成为过程。
|
|
这是一个函数接受一个可变对象(不是过程)。
|
|
|
|
```python
|
|
peek_str s: Str! = log s
|
|
```
|
|
|
|
<p align='center'>
|
|
<a href='./07_side_effect.md'>上一页</a> | <a href='./09_builtin_procs.md'>下一页</a>
|
|
</p>
|