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>
|