Add table.unpack comment

This commit is contained in:
Daniel P H Fox (Roblox) 2025-01-29 14:32:06 -08:00 committed by GitHub
parent eaf45cca9e
commit 7eed972c27
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -183,6 +183,12 @@ For unpacking arrays, this proposal suggests:
{ [1] = foo, [2] = bar }
```
Or alternatively, using `table.unpack`:
```Lua
foo, bar = table.unpack(data)
```
For disambiguity with other languages, we would still not allow:
```Lua