1
2
3
4
5
6
7
8
9
//! Use ast to calculate or generate target code.
//!
//! Current implemented generator:
//! * `calculator`: calculate the expression to `i128`, will
//! cause a cast in division
//! * `calculator_f`: calculate the expression to `f64`

pub mod calculator;
pub mod calculator_f;