• Lucy :3@feddit.org
    link
    fedilink
    arrow-up
    0
    ·
    3 months ago

    Average Rust code:

    macro_rules! sum {
        ( $initial:expr $(, $expr:expr )* $(,)? ) => {
            $initial $(+ $expr)*
        }
    }
    
    fn remove_prefix<'a>(mut original: &'a str, prefix: &str) -> &'a str
    
    let mut up = 1;
        'outer: loop {
    

    Hell I don’t want to know what you define as ugly then.