Skip to content

Instantly share code, notes, and snippets.

@capeterson
Created January 9, 2014 03:58
Show Gist options
  • Save capeterson/8329201 to your computer and use it in GitHub Desktop.
Save capeterson/8329201 to your computer and use it in GitHub Desktop.
new Map<String,Object>{
'isBooleanType' => true,
'integerType' => 42,
'strings' => 'are stringy',
'this is where it gets tripy' => new Map<String,Object>{
'down the rabbit hole' => true,
'through the looking glass' => new Map<String,Object>{
'isThisEnoughToGetThePointAcross' => true
}
},
}
{
"integerType":42,
"this is where it gets tripy":{
"through the looking glass":{
"isThisEnoughToGetThePointAcross":true
},
"down the rabbit hole":true
},
"strings":"are stringy",
"isBooleanType":true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment