fapprox/src/main.rs

8 lines
105 B
Rust

use crate::{formula::Formula, node::Node};
mod formula;
mod node;
#[cfg(test)]
mod tests;
fn main() {}