Build A Simple Interpreter with Rust part1
· 3 min read
The first component of this interpreter is a Lexer which used for scan and group the chars into Tokens.
The first component of this interpreter is a Lexer which used for scan and group the chars into Tokens.
From Wikipedia:
In computer science, an interpreter is a computer program that directly executes instructions written in a programming or scripting language, without requiring them previously to have been compiled into a machine language program. An interpreter generally uses one of the following strategies for program execution: