world's first Luau proposal that reuses the until keyword

This commit is contained in:
Daniel P H Fox (Roblox) 2025-01-25 16:53:02 -08:00 committed by GitHub
parent f505820dba
commit 8c69445f14
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -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