From 4dda9ef84298e680890d37dc00a05d6340b631cb Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Wed, 26 Mar 2025 10:28:58 -0700 Subject: [PATCH] Add symbol rename example --- docs/syntax-structure-matching.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/syntax-structure-matching.md b/docs/syntax-structure-matching.md index 931ebc8..e0e7d73 100644 --- a/docs/syntax-structure-matching.md +++ b/docs/syntax-structure-matching.md @@ -115,7 +115,9 @@ This proposal does not preclude supporting arrays, nested matching or non-string Using a symbol like `=` or `:` for renaming was considered, but was rejected because it was ambiguous whether the left hand side was the key, or the right hand side. By contrast, a keyword like `as` naturally implies an order. - +```Lua +local { foo = red, bar = blue } = data +``` #### Dot keys