1 2 3 4 5 6 7 8
//! This module demonstrates various comment types. /// This doc comment has a mispelling: teh quick brown fox. pub fn main() void { // This regular comment has a speling error here const x: i32 = 42; _ = x; }