jsonic:   because JSON is boring
1 Introduction
8.12

jsonic: because JSON is boring🔗ℹ

Roxy Lexington

 #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

]