blob: c403fba60312faee1165f568a8278211bab24101 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
fn main() {
// Statements here are executed when the compiled binary is called
// Print text to the console
println!("Hello World!");
// Clippy detects this as a swap and considers this as an error
let mut a=1;
let mut b=1;
a = b;
b = a;
}
|