Macro pkg_name

Source
macro_rules! pkg_name {
    ($($x:tt)*) => { ... };
}
Expand description

This is a very simple macro

use interpreter::pkg_name;

pkg_name! { "MyPackageName" }