catppuccin/samples/json.json
Hamothy b9bbd77c7f
docs: restructure & improve contrib docs (#1876)
* docs: restructure & improve contrib docs

* chore: rework samples code

* docs: fix capitalization & brand names

* docs: PR comments & try to standardise palette vs flavor

* docs: add sample-programs

* docs: update submission guidelines (refs: #1821)

* refactor: tidy up docs

Co-authored-by: winston <hey@winston.sh>
2023-01-26 19:53:05 +01:00

19 lines
388 B
JSON

{
// Line comments are not included in standard but nonetheless allowed.
/* As well as block comments. */
"the only keywords are": [
true,
false,
null
],
"strings with": {
"no escapes": "pseudopolinomiality"
"valid escapes": "C-style\r\n and unicode\u0021",
"illegal escapes": "\0377\x\"
},
"some numbers": [
42,
-0.0e-0,
6.626e-34
]
}