1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub struct InaneState {}

impl InaneState {
    pub fn new() -> Self {
        Self {}
    }

    pub fn run(&mut self) {
        println!(
            "Inane v{}\n\n🤷\n\nThere is nothing to do.",
            env!("CARGO_PKG_VERSION")
        )
    }
}