mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-15 12:39:31 +03:00
17 lines
353 B
Rust
17 lines
353 B
Rust
|
|
fn main() {
|
|
loop
|
|
{ return some_val;}
|
|
|
|
let x = loop { do_forever(); };
|
|
|
|
'label : loop {
|
|
// Just comments
|
|
}
|
|
|
|
'a: while loooooooooooooooooooooooooooooooooong_variable_name + another_value > some_other_value{}
|
|
|
|
while aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa > bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb {
|
|
}
|
|
}
|