Just another format to specify your configs in\ Currently under development, so don't expect full functionality until version 1.0.0
*.js
```rust use pml::parse::file as pml_parse;
fn main() {
let pmlresult = pmlparse("testFile.pml");
match pmlresult {
Err(e) => println("{e:#?}"),
Ok(result) => {
if(result.get::
testFile.pml
```pml age=420 firstname = "Max" name = {firstname} " "{lastname} lastname = "Mustermann" stayAnonymous = true
```
Note that you can have strings consist of other values (It wouldn't even have to have been other strings; I could have added the age as part of the name, too!). Numbers and booleans are recognized as such and numbers are saved as the most memory efficient type. Whitespaces between keys, values, the equal sign and the different parts of strings do not matter at all. You can get the values either as a copy/clone or as reference. If you copy/clone them you can upcast numbers to a bigger type and everything can be converted to a String.