Remove println!

This commit is contained in:
Eryn Wells 2017-04-15 11:06:14 -07:00
parent 25ef33b81f
commit 161c122327

View file

@ -20,7 +20,6 @@ impl Add for Real {
let lcm = q.lcm(oq);
let numer = (p * (lcm / q)) + (op * (lcm / oq));
let denom = lcm;
println!("lcm = {}, numer = {}, denom = {}", lcm, numer, denom);
Real::Rational(numer, denom)
}.reduce()
},