wmathrs 0.1.0

A simple mathematical crate.
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(dead_code)]

#[macro_export]
macro_rules! print_expr {
    ($($expr:expr),*) => {$(
        println!("{:?} = \n{}\n", stringify!($expr), $expr); 
    )*}
}

fn main() {}