diff --git a/docs/syntax-structure-matching.md b/docs/syntax-structure-matching.md index 789c3bc..de47e99 100644 --- a/docs/syntax-structure-matching.md +++ b/docs/syntax-structure-matching.md @@ -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