Skip to content

Files

Latest commit

 

History

History

interpreter

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Challenge to create an interpreter in Rust

In this challenge I will create an interpreter in Rust following the book Writing An Interpreter In Go.

Lexer (Tokenizer)

Transforming, from source code to tokens, is called “lexical analysis”, or “lexing” for short.