Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 803 Bytes

File metadata and controls

31 lines (21 loc) · 803 Bytes

RESL

RESL = Runtime Evaluated Serialization Language

A modern configuration and serialization language with variables, expressions, and dynamic runtime evaluation.

{
    name = "My Application";
    version = "1.0.0";

    database = [
        "host": "localhost",
        "port": 5432,
        "ssl": true
    ];

    features = ["auth", "logging", "metrics"];

    ["name": name, "version": version, "database": database, "features": features]
}

Documentation

License

MIT OR Apache-2.0