kfl 0.5.0

Another KDL language implementation
Documentation
1
2
3
4
5
6
7
8
9
//! Define macros.

/// Creates `Box<str>` from `&str`
#[macro_export]
macro_rules! own {
    ($s:expr) => {
        $s.to_owned().into_boxed_str()
    };
}