From d49d29f73af4ae2ad83e6f98146e02fa0dff121f Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Sat, 25 Jan 2025 16:58:46 -0800 Subject: [PATCH] Nope that's ambiguous --- docs/syntax-multiple-index.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/docs/syntax-multiple-index.md b/docs/syntax-multiple-index.md index af51537..32d0af1 100644 --- a/docs/syntax-multiple-index.md +++ b/docs/syntax-multiple-index.md @@ -231,16 +231,6 @@ The `until` token was considered. This is not ambiguous, but was discarded for n local foo = bar[1 until 3] ``` -However, `until` could plausibly be implemented as its own operator since it is used by almost nothing else. The utility of this is questionable but it is interesting. - -```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. ```Lua