mirror of
https://github.com/alecthomas/chroma.git
synced 2025-02-21 19:06:18 +02:00
12 lines
197 B
Plaintext
12 lines
197 B
Plaintext
#[derive(Debug)]
|
|
struct Rectangle {
|
|
width: u32,
|
|
height: u32,
|
|
}
|
|
|
|
fn main() {
|
|
let rect1 = Rectangle { width: 30, height: 50 };
|
|
|
|
// Some comment
|
|
println!("rect1 is {:?}", rect1);
|
|
} |