/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

  1. fn main() {
  2. let pi = 3.1415927;
  3. log(debug, -pi * (pi + 2.0 / pi) - pi * 5.0);
  4. if pi == 5.0 || pi < 10.0 || pi <= 2.0 || pi != 22.0 / 7.0 || pi >= 10.0
  5. || pi > 1.0 {
  6. debug!{"yes"};
  7. }
  8. }