1
2
3
4

pub trait Semigroup {
    fn mappend(&self, b: Self) -> Self;
}