From f868d02b08688c04509d1abda5af89a182033d88 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 21 Nov 2024 13:00:53 -0500 Subject: Add `NULL` as a syntax for null values. --- docs/iterators.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/iterators.md') 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 -- cgit v1.2.3