simpleson icon indicating copy to clipboard operation
simpleson copied to clipboard

Add ability to assign array values

Open gregjesl opened this issue 4 years ago • 0 comments

The following example needs to compile and return the appropriate values:

json::jobject example = json::jobject::parse("[1,2,3]")
example[1] = 4;
int echo = example[1]; // Should return 4

gregjesl avatar Aug 01 '21 04:08 gregjesl