use crate::stack::StackVec; pub fn meow(memory: &mut StackVec) { println!("{}", memory.pop()); }