rust-book/branches/src/main.rs

11 lines
165 B
Rust
Raw Normal View History

2019-01-30 14:25:30 -05:00
fn main() {
let condition = true;
let number = if condition {
5
} else {
6
};
println!("The value of number is: {}", number);
}