From 8c69445f14db96d9b13c73126391515b92b72375 Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Sat, 25 Jan 2025 16:53:02 -0800 Subject: [PATCH] world's first Luau proposal that reuses the `until` keyword --- 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 f605157..32d0af1 100644 --- a/docs/syntax-multiple-index.md +++ b/docs/syntax-multiple-index.md @@ -225,6 +225,12 @@ The `:` token was considered. However, this was discarded because it would be am local foo = bar[baz : garb()] -- ambiguous ``` +The `until` token was considered. This is not ambiguous, but was discarded for now over concerns about verbosity. + +```Lua +local foo = bar[1 until 3] +``` + The `..` token was considered. However, this was discarded because it would be ambiguous with string concatenation. ```Lua