# Description
Proc-macro for generating [const-Frac::Frac] from a decimal literal in const context.
# Badges
[](https://gitlab.com/fton/real-proc/-/releases)
[](https://gitlab.com/fton/real-proc/-/commits/main)
[](https://gitlab.com/fton/real-proc/-/commits/main)
# Usage
```
use ::real_proc::frac;
use ::const_frac::Frac;
const CONST: Frac = frac!(const_frac, 3.14e-20);
let int = Frac::from_int(314);
let right = int * Frac::from_exp10(-22);
assert_eq!(CONST, right);
```
# Project status
This package is in the very early stage.