2015-01-31 12:49:12 -06:00
|
|
|
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2015-01-31 12:49:12 -06:00
|
|
|
fn main() {
|
2015-03-24 14:45:11 -05:00
|
|
|
if let Ok(x) = "3.1415".parse::<f64>() {
|
2015-01-31 12:49:12 -06:00
|
|
|
assert_eq!(false, x <= 0.0);
|
|
|
|
}
|
2015-03-24 14:45:11 -05:00
|
|
|
if let Ok(x) = "3.1415".parse::<f64>() {
|
2015-01-31 12:49:12 -06:00
|
|
|
assert_eq!(3.1415, x + 0.0);
|
|
|
|
}
|
2015-03-24 14:45:11 -05:00
|
|
|
if let Ok(mut x) = "3.1415".parse::<f64>() {
|
2015-01-31 12:49:12 -06:00
|
|
|
assert_eq!(8.1415, { x += 5.0; x });
|
|
|
|
}
|
|
|
|
}
|