Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1pub fn post_inc(value: &mut usize) -> usize { 2 let prev = *value; 3 *value += 1; 4 prev 5}