//! The Token struct holds the tokens that are generated by the Lexer.
//! The Token struct maintains the position where the token was generated and the value of the token.
//! Using an enum for the values increases the readibility of the code.
use TokenKind;