fix: remove leftover dbg!()
This commit is contained in:
parent
d7b77fe5b5
commit
b7c3972949
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ mod nodes;
|
|||
|
||||
fn main() {
|
||||
let input = match env::args().skip(1).rev().reduce(|x, a| a + &x) {
|
||||
Some(s) => dbg!(s),
|
||||
Some(s) => s,
|
||||
None => {
|
||||
let mut buf = String::new();
|
||||
io::stdin().read_to_string(&mut buf).unwrap();
|
||||
|
|
|
|||
Loading…
Reference in a new issue