loopcat 0.2.0

bring me the lööps, bröther (dead memes are funny)
Documentation
#[macro_export]
macro_rules! lööp {
    ( $($statement:tt)* ) => {
        loop { $( $statement )* }
    };
}

#[cfg(test)]
mod tests {
    use crate::lööp;

    #[test]
    fn test_lööp() {
        lööp! {
            break;
        };
    }

    #[test]
    fn test_lööp_print() {
        lööp! {
            print!("lollmao");
            break;
        };
    }
}