2024-02-05 09:05:48 +02:00

3 lines
55 B
Rust

pub fn pop(memory: &mut Vec<u16>) {
memory.pop();
}