Added translation actions for Arithmetic expressions

This commit is contained in:
Mariano Uvalle 2019-04-05 03:09:08 +00:00
parent 5dfc8d2483
commit 81a2de075c
6 changed files with 689 additions and 396 deletions

View file

@ -1,5 +1,5 @@
program test
integer :: a, b
a = 1 + 2
a = (2 + 1) * 2
b = a
end program