We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0da3647 commit 03eed30Copy full SHA for 03eed30
1 file changed
src/tokenizer.rs
@@ -109,7 +109,6 @@ fn check_exp(value: &str) -> bool {
109
fn check_float(value: &str, exponent: Option<usize>, real: Option<usize>)
110
-> bool
111
{
112
- println!("Value {:?} {:?} {:?}", value, exponent, real);
113
match (exponent, real) {
114
(Some(e), Some(r)) if e < r => false,
115
(Some(e), Some(r))
0 commit comments