Initial commit

This commit is contained in:
Emery Hemingway 2024-04-22 18:55:50 +02:00
commit 4b0550b543
1 changed files with 11 additions and 0 deletions

11
preserves.min Normal file
View File

@ -0,0 +1,11 @@
(
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