This repository has been archived on 2024-05-22. You can view files and clone it, but cannot push or open issues or pull requests.
syndicate-min/preserves.min

12 lines
265 B
Plaintext

(
symbol text
(bool|num|str :v ==> str :result)
(
(
((v boolean?) ((((v) ("#t" @result)) ((true) ("#f" @result))) case))
((v number?) (v string @result))
((v string?) (v escape "\"" prefix "\"" suffix @result))
) case
)
) operator