mical-cli-config 0.0.2

Internal config evaluator for mical-cli
Documentation
---
source: crates/config/tests/snapshots.rs
---
# key-value-integer

## Input

```mical
a 0
b 42
c +1
d -1
e +0
f -0

```

## JSON

```json
{
  "a": 0,
  "b": 42,
  "c": 1,
  "d": -1,
  "e": 0,
  "f": 0
}
```

vim:ft=markdown