For loop example

This commit is contained in:
Daniel P H Fox (Roblox) 2025-01-25 16:58:06 -08:00 committed by GitHub
parent 7867133578
commit b1e00d1eb9
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -235,6 +235,10 @@ However, `until` could plausibly be implemented as its own operator since it is
```Lua ```Lua
local one, two, three = 1 until 3 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. The `..` token was considered. However, this was discarded because it would be ambiguous with string concatenation.