10 lines
155 B
Rust
10 lines
155 B
Rust
|
fn main() {
|
||
|
let number = 3;
|
||
|
|
||
|
if number < 5 {
|
||
|
println!("condition was true");
|
||
|
} else {
|
||
|
println!("condition was false");
|
||
|
}
|
||
|
}
|