diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-11-21 13:00:53 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-11-21 13:00:53 -0500 |
| commit | f868d02b08688c04509d1abda5af89a182033d88 (patch) | |
| tree | af64c48127e0edfebb348edabbccbcc402d2070b /docs/iterators.md | |
| parent | 90573ba7a15bb47a11c1eb6f69ed04c01b69724d (diff) | |
Add `NULL` as a syntax for null values.
Diffstat (limited to 'docs/iterators.md')
| -rw-r--r-- | docs/iterators.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/iterators.md b/docs/iterators.md index 63a44fcf..ee777cfe 100644 --- a/docs/iterators.md +++ b/docs/iterators.md @@ -16,13 +16,13 @@ successively gets one line from a file at a time until the file is exhausted: >> iter := (./test.txt):each_line() >> iter() -= "line one"? += "line one" : Text? >> iter() -= "line two"? += "line two" : Text? >> iter() -= "line three"? += "line three" : Text? >> iter() -= !Text += NULL : Text? for line in (./test.txt):each_line(): pass |
