From b1e00d1eb9f9c6cb798973fb9749e56c58ef22d3 Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Sat, 25 Jan 2025 16:58:06 -0800 Subject: [PATCH] For loop example --- docs/syntax-multiple-index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/syntax-multiple-index.md b/docs/syntax-multiple-index.md index 198f4db..af51537 100644 --- a/docs/syntax-multiple-index.md +++ b/docs/syntax-multiple-index.md @@ -235,6 +235,10 @@ However, `until` could plausibly be implemented as its own operator since it is ```Lua local one, two, three = 1 until 3 + +for numbers in {1 until 3} do + -- ... +end ``` The `..` token was considered. However, this was discarded because it would be ambiguous with string concatenation.