Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1interface common { 2 /// A (half-open) range (`[start, end)`). 3 record range { 4 /// The start of the range (inclusive). 5 start: u32, 6 /// The end of the range (exclusive). 7 end: u32, 8 } 9}