@[email protected] to [email protected]English • 1 year agoIntroducing Pkl, a programming language for configurationpkl-lang.orgmessage-square18fedilinkarrow-up134arrow-down11cross-posted to: [email protected]
arrow-up133arrow-down1external-linkIntroducing Pkl, a programming language for configurationpkl-lang.org@[email protected] to [email protected]English • 1 year agomessage-square18fedilinkcross-posted to: [email protected]
minus-square@abhibeckertlink4•edit-21 year agoPkl is a hell of a lot easier to work with. Compare this pkl code: host: String port: UInt16(this > 1000) To the equivalent in json: { "$schema": "http://example.org/my-project/schema#", "type": "object", "properties": { "host": { "type": "string" }, "port": { "type": "number", "minimum": 1000, "exclusiveMinimum": true } }, "required": ["host", "port"] }
Pkl is a hell of a lot easier to work with. Compare this pkl code:
To the equivalent in json:
Nice