use crate::stack::StackVec; pub fn dup(memory: &mut StackVec) { let data = memory.last(); memory.push(data); }