mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 19:11:00 +01:00
For loop example
This commit is contained in:
parent
7867133578
commit
b1e00d1eb9
1 changed files with 4 additions and 0 deletions
|
@ -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.
|
||||||
|
|
Loading…
Add table
Reference in a new issue