simple compiler written in Haskell for little language that has 3 type of statements.
- Input Statment: for getting input from user
! num1
- Replacement Statement: for setting values to variables. you can create new variables with this statement too.
num1 = 2
num2 = num1 + 1
- Output Statement: for logging variables in console.
? num1