diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-12-18 14:44:37 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-12-18 14:44:37 -0500 |
| commit | c6c7cc727290663e50b8a4d28e92214fa805ca95 (patch) | |
| tree | a4f77690d44fedd445178a701969101030790a06 /test/tables.tm | |
| parent | aa262344712be27afc02441a309ddde03fa2bec9 (diff) | |
Revert "Deprecate "&" for stack references"
This reverts commit 41c0ea851a542bcd7d54b8c5c06d70e1e00095e1.
Diffstat (limited to 'test/tables.tm')
| -rw-r--r-- | test/tables.tm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tables.tm b/test/tables.tm index 403f25e2..e67c7127 100644 --- a/test/tables.tm +++ b/test/tables.tm @@ -82,9 +82,9 @@ func main(): = 10 do: - >> t4 := {"one": 1} + >> t4 := &{"one": 1} >> t4["one"] = 999 >> t4["two"] = 222 >> t4 - = {"one":999, "two":222} + = &{"one":999, "two":222} |
