This tutorial is very helpful for beginner who are learning Compiler Design. Strong recommendation.
Step 1: Clone this repository and import the lex.py in your code
Step 2: Open your terminal and type this command:
bash build.sh <ExecutedFile>
PRINT"Here is example 3: add(10, 20)"
LET a = 10
LET b = 20
FUNC add(a, b)
LET c = a + b
RETURN c
ENDFUNC
PRINT add(a, b)