From da11431edfce2fc28577ee3c8190715bdc0d7aea Mon Sep 17 00:00:00 2001 From: Jeff Date: Mon, 29 Jan 2024 23:21:54 -0500 Subject: [PATCH] Edit README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ca8e8ce..cc63ad3 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,9 @@ async { { file = fs:read_file('Cargo.toml') - for line in str:lines(file) { + # This loop will run each iteration in its own thread. If one of them + # reaches a "break" statement, they will all stop. + async for line in str:lines(file) { if str:contains(line, 'author') { output(line) break