Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 1.19 KB

README.md

File metadata and controls

55 lines (42 loc) · 1.19 KB

Yet Another Interpreter in RUST

Refrences

Book Author Language Example
Crafting Interpreters Robert Nystrom Java here
Writing An Interpreter In Go Thorsten Ball Go here

Features

Data types
  • Number
  • String
  • Boolean
  • Function
  • Class
  • Nil
Operators
  • Arthemetic
  • Logical
  • Unary
Assignment
  • Variable
  • Constants
  • Enhanced Assignments
Branch
  • If Condition
  • Else Condition
  • Else If
Loop
  • While Loop
  • For Loop
  • Break
  • Continue
Function
  • Zero Argument
  • Multiple Arguments
  • Return
  • Recursion