From 912c7a265e05c551bac879356c13c4c0f8783f0b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Emmanuel=20Beno=C3=AEt?= <tseeker@nocternity.net>
Date: Fri, 30 Dec 2022 23:20:57 +0100
Subject: [PATCH] Tokens - Stop complaining about EOF

---
 src/tokens.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tokens.rs b/src/tokens.rs
index f9a91ea..565265d 100644
--- a/src/tokens.rs
+++ b/src/tokens.rs
@@ -43,7 +43,7 @@ pub enum TokenType {
     Var,
     While,
 
-    EOF,
+    _EOF,
 }
 
 /// Full information about a token.