mical-cli-config 0.0.2

Internal config evaluator for mical-cli
Documentation
---
source: crates/config/tests/snapshots.rs
---
# basic-entries

## Input

```mical
key value
name hello world
path /usr/local/bin
key hello # not a comment

```

## JSON

```json
{
  "key": [
    "value",
    "hello # not a comment"
  ],
  "name": "hello world",
  "path": "/usr/local/bin"
}
```

vim:ft=markdown