changed the way lists and maps are printed

This commit is contained in:
cozis
2022-01-22 02:16:33 +01:00
parent c77a28896e
commit 4dfc213c71
3 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ int main(int argc, char **argv)
return -1;
}
Object *o = buildValue(heap, &error, "${ return 3+1; }");
Object *o = buildValue(heap, &error, "[${ return 3*1; }, $i, {}, {${return 'name';}: $s, ${return 'name';}: [$s]}]", 4, "Francesco", "Giovanni");
if(o == NULL)
{