rewrite variable.go to allow indexed asignment

This commit is contained in:
2023-03-08 22:41:55 +00:00
parent f7603e30c4
commit 09deba8912
8 changed files with 166 additions and 42 deletions

View File

@@ -94,7 +94,7 @@ func anyToArgon(x any, quote bool, simplify bool, depth int, indent int, color b
if color {
output = append(output, "\x1b[38;5;240m")
}
output = append(output, "<function "+x.name+">")
output = append(output, "<function>")
if color {
output = append(output, "\x1b[0m")
}