Extensible data notations based on Cirru syntax
bash
cargo add cirru_edn
```rust use cirru_edn::Edn;
cirru_edn::parse("[] 1 2 true"); // Result
cirruedn::format(data, /* useinline */ true); // Result
mixed data:
cirru
{} (:a 1.0)
:b $ [] 2.0 3.0 4.0
:c $ {} (:d 4.0)
:e true
:f :g
:h $ {} (|a 1.0)
|b true
cirru
{}
:b $ [] 2 3 4
:a 1
:c $ {}
:h $ {} (|b true) (|a 1)
:f :g
:e true
:d 4
for top-level literals, need to use do
expression:
cirru
do nil
cirru
do true
do false
cirru
do 1
do -1.1
quoted code:
cirru
do 'a
quote (a b)
cirru
do :a
string syntax, note it's using prefixed syntax of |
:
cirru
do |a
string with special characters:
cirru
do \"|a b\"
nested list:
cirru
[] 1 2 $ [] 3
```cirru
```
tuple, or tagged union, actually very limitted due to Calcit semantics:
cirru
:: :a 1
a record, notice that now it's all using keywords:
cirru
%{} :Demo (:a 1)
:b 2
:c $ [] 1 2 3
MIT