aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornic-gaffney <gaffney_nic@protonmail.com>2023-04-10 19:01:14 -0500
committernic-gaffney <gaffney_nic@protonmail.com>2023-04-10 19:01:14 -0500
commit949acb3de2d1166a8c521af974e099a47dfd739f (patch)
tree68d17567351dd04be394663e0a26bf121a459448
parentfdfbad1309cc46b3e9d2dcb83983fec004b94e61 (diff)
downloadsloth-949acb3de2d1166a8c521af974e099a47dfd739f.tar.gz
clippy bullshit
-rw-r--r--crates/sloth/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/sloth/src/main.rs b/crates/sloth/src/main.rs
index 46621eb..7821097 100644
--- a/crates/sloth/src/main.rs
+++ b/crates/sloth/src/main.rs
@@ -29,7 +29,7 @@ fn main() {
return;
};
- let tokens = Lexer::new(&source).collect_vec();
+ let _tokens = Lexer::new(&source).collect_vec();
// TODO: Write a parser
}