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

3 lines
76 B
Rust

pub fn size(memory: &mut Vec<u16>) {
memory.push(memory.len() as u16);
}