mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
35 lines
516 B
Rust
35 lines
516 B
Rust
fn main(/*
|
|
---
|
|
*/) {
|
|
let x /* this is one line */ = 3;
|
|
|
|
let x /*
|
|
* this
|
|
* is
|
|
* multiple
|
|
* lines
|
|
*/ = 3;
|
|
|
|
let x = /*
|
|
* this
|
|
* is
|
|
* multiple
|
|
* lines
|
|
* after
|
|
* the
|
|
* =
|
|
*/ 3;
|
|
|
|
let x /*
|
|
* this
|
|
* is
|
|
* multiple
|
|
* lines
|
|
* including
|
|
* a
|
|
|
|
* blank
|
|
* line
|
|
*/ = 3;
|
|
}
|