Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 189 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 189 Bytes

Interpreter Monkey

Lexical Parser

INPUT:

"let x = 5 + 5;"

OUTPUT:

[
  LET,
  IDENTIFIER("x"),
  EQUAL_SIGN,
  INTEGER(5),
  PLUS_SIGN,
  INTEGER(5),
  SEMICOLON
]