mical-cli-config 0.0.2

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

## Input

```mical
a true
b false
x 42
y -10
z +7
hex 0xFF

```

## JSON

```json
{
  "a": true,
  "b": false,
  "hex": 255,
  "x": 42,
  "y": -10,
  "z": 7
}
```

vim:ft=markdown