macro_log/
lib.rs

1pub mod time;
2pub mod log;
3pub use macro_log_macros::*;
4
5#[cfg(test)]
6mod tests {
7    #[test]
8    fn test() {
9        crate::i!("Hello {}", "World!");
10    }
11
12    #[test]
13    fn test_import() {
14        use crate::wtf;
15        let mut str = "Hello".to_owned();
16        wtf!(str);
17        wtf!(str.pop());
18    }
19}