/src/test/run-pass/float.rs
http://github.com/jruderman/rust · Rust · 10 lines · 8 code · 2 blank · 0 comment · 8 complexity · c3b7289fa396a13334c403ff9675717a MD5 · raw file
- fn main() {
- let pi = 3.1415927;
- log(debug, -pi * (pi + 2.0 / pi) - pi * 5.0);
- if pi == 5.0 || pi < 10.0 || pi <= 2.0 || pi != 22.0 / 7.0 || pi >= 10.0
- || pi > 1.0 {
- debug!{"yes"};
- }
- }