1
2
3
4
5
6
7
8
9
impl Greeter {
    fn hello(&self) {
        println!("hello");
    }

    fn goodbye(&self) {
        println!("goodbye");
    }
}