7 lines
110 B
Rust
7 lines
110 B
Rust
// rustfmt-normalize_comments: true
|
|
fn main() {
|
|
// Line Comment
|
|
/* Block Comment */
|
|
|
|
let d = 5;
|
|
}
|