chroma/lexers/testdata/rust/rust.actual
2025-03-22 20:46:00 +13:00

25 lines
389 B
Text

#[derive(Debug)]
struct Rectangle {
width: u32,
height: u32,
}
async fn alignof() {}
fn main() {
let rect1 = Rectangle { width: 30, height: 50 };
// Some comment
println!("rect1 is {:?}", rect1);
let r#type = "valid";
let i: i128 = 1117;
let s = "March\n
April";
let s = r"March \
April";
let s = "String split over\n multiple \
lines";
}