Created
January 9, 2014 03:58
-
-
Save capeterson/8329201 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
} | |
}, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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