8.18
jsonic: because JSON is boring
| #lang jsonic | package: jsonic-jf | 
1 Introduction
This is a domain-specific language that relies on the json library.
In particular, the jsexpr->string function.
If we start with this:
| #lang jsonic | 
| [ | 
| @$ 'null $@, | 
| @$ (* 6 7) $@, | 
| @$ (= 2 (+ 1 1)) $@ | 
| ] | 
We’ll end up with this:
| [ | 
| null, | 
| 42, | 
| true | 
| ] |