kb_common/
lib.rs

1#[macro_export]
2macro_rules! hello {
3    () => {
4        println!("Hello World !");
5    };
6}