box-o-sand/rustbook/branches/src/main.rs

10 lines
155 B
Rust
Raw Normal View History

2017-12-22 15:26:26 +00:00
fn main() {
let number = 3;
if number < 5 {
println!("condition was true");
} else {
println!("condition was false");
}
}