diff options
| author | nic-gaffney <gaffney_nic@protonmail.com> | 2023-04-10 19:01:14 -0500 |
|---|---|---|
| committer | nic-gaffney <gaffney_nic@protonmail.com> | 2023-04-10 19:01:14 -0500 |
| commit | 949acb3de2d1166a8c521af974e099a47dfd739f (patch) | |
| tree | 68d17567351dd04be394663e0a26bf121a459448 /crates | |
| parent | fdfbad1309cc46b3e9d2dcb83983fec004b94e61 (diff) | |
| download | sloth-949acb3de2d1166a8c521af974e099a47dfd739f.tar.gz | |
clippy bullshit
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/sloth/src/main.rs | 2 |
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 } |
