From 7867133578ceb9ca4acce9a28dd29b49ca7b387c Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Sat, 25 Jan 2025 16:57:24 -0800 Subject: [PATCH] `until` as operator --- docs/syntax-multiple-index.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/syntax-multiple-index.md b/docs/syntax-multiple-index.md index 32d0af1..198f4db 100644 --- a/docs/syntax-multiple-index.md +++ b/docs/syntax-multiple-index.md @@ -231,6 +231,12 @@ 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 +``` + The `..` token was considered. However, this was discarded because it would be ambiguous with string concatenation. ```Lua