Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use plugin::prelude::*; 2 3#[bind] 4pub fn add(a: (f64, f64)) -> f64 { 5 a.0 + a.1 6}