inane/
lib.rs

1pub struct InaneState {}
2
3impl InaneState {
4    pub fn new() -> Self {
5        Self {}
6    }
7
8    pub fn run(&mut self) {
9        println!(
10            "Inane v{}\n\n🤷\n\nThere is nothing to do.",
11            env!("CARGO_PKG_VERSION")
12        )
13    }
14}