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.
11 lines
227 B
Racket
11 lines
227 B
Racket
8 years ago
|
#lang jsonic-demo-2
|
||
8 years ago
|
// a line comment
|
||
|
[
|
||
|
@$ 'null $@,
|
||
|
@$ (* 6 7) $@,
|
||
|
@$ (= 2 (+ 1 1)) $@,
|
||
|
@$ (list "array" "of" "strings") $@,
|
||
|
@$ (hash 'key-1 'null
|
||
|
'key-2 (even? 3)
|
||
|
'key-3 (hash 'subkey 21)) $@
|
||
|
]
|