You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
260 B
Racket
13 lines
260 B
Racket
8 years ago
|
#lang br/demo/jsonic
|
||
|
// a line comment
|
||
|
[
|
||
8 years ago
|
@$ 'null $@,
|
||
|
@$ #f $@,
|
||
|
@$ #t $@,
|
||
|
@$ (* 6 7) $@,
|
||
|
@$ "string" $@,
|
||
|
@$ (list "array" "of" "strings") $@,
|
||
|
@$ (hash 'key-1 42
|
||
|
'key-2 "value"
|
||
|
'key-3 (hash 'subkey 21)) $@
|
||
8 years ago
|
]
|