# 内置函数 [![badge](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Fgezf7g7pd5.execute-api.ap-northeast-1.amazonaws.com%2Fdefault%2Fsource_up_to_date%3Fowner%3Derg-lang%26repos%3Derg%26ref%3Dmain%26path%3Ddoc/EN/syntax/05_builtin_funcs.md%26commit_hash%3D51de3c9d5a9074241f55c043b9951b384836b258)](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/05_builtin_funcs.md&commit_hash=51de3c9d5a9074241f55c043b9951b384836b258) ## 如果 `if` 是一个根据条件改变处理的函数 ```python result: Option Int = if! Bool.sample!(), do: log "True was chosen" 1 print! result # None (or 1) ``` `.sample!()` 返回一组随机值。如果返回值为真,`print! "真"`被执行 如果条件为假,您还可以指定要执行的操作; 第二个 do 块称为 else 块 ```python result: Nat = if Bool.sample!(): do: log "True was chosen" 1 do: log "False was chosen" 0 print! result # 1 (or 0) ``` 如果进程是单行,则可以省略缩进 ```python result = if Bool.sample!(): do 1 do 0 ``` ## for 你可以使用 `for` 来编写一个重复的过程 ```python match_s(ss: Iterator(Str), pat: Pattern): Option Str = for ss, s -> if pat.match(s).is_some(): break s ```

上一页 | 下一页