From 4a3edec5e63e37f5c7edf3314c6d7307a7121083 Mon Sep 17 00:00:00 2001 From: tijani Date: Thu, 26 May 2022 19:20:51 +0000 Subject: [PATCH] git-svn-id: https://svn.tlawal.org/svn/monkey@18 f6afcba9-9ef1-4bdd-9b72-7484f5705bac --- token/tokens.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/token/tokens.go b/token/tokens.go index cc9478e..b2658da 100644 --- a/token/tokens.go +++ b/token/tokens.go @@ -10,8 +10,9 @@ type Token struct { const ( ILLEGAL = "ILLEGAL" EOF = "EOF" + COMMENT = "COMMENT" // TODO(tijani): Implement this!! - // Identifiers + Literals + // Identifiers and basic type literals IDENT = "IDENT" INT = "INT"