11 lines
172 B
Rust
11 lines
172 B
Rust
|
// rustfmt-disable_all_formatting: false
|
||
|
// Disable all formatting
|
||
|
|
||
|
fn main() {
|
||
|
if lorem {
|
||
|
println!("ipsum!");
|
||
|
} else {
|
||
|
println!("dolor!");
|
||
|
}
|
||
|
}
|