git-svn-id: https://svn.tlawal.org/svn/monkey@18 f6afcba9-9ef1-4bdd-9b72-7484f5705bac

This commit is contained in:
Tijani Lawal 2022-05-26 19:20:51 +00:00
parent 2e18493a4a
commit 4a3edec5e6

View File

@ -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"