summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2021-12-12 17:13:15 +0000
committerjwansek <eddie.atten.ea29@gmail.com>2021-12-12 17:13:15 +0000
commit46f7ba79f55003d65c8e21e48bc676d878fa8b5b (patch)
tree43caf7b65307eaa1d50ed3f7f5ad18a9984b1506 /src
parent07187c09d0fa61c49201bff9660c1c28c3825da4 (diff)
downloadesotericFORTRAN-46f7ba79f55003d65c8e21e48bc676d878fa8b5b.tar.gz
esotericFORTRAN-46f7ba79f55003d65c8e21e48bc676d878fa8b5b.zip
added commented out left associativity example
Diffstat (limited to 'src')
-rw-r--r--src/examples/expression.ft3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/examples/expression.ft b/src/examples/expression.ft
index c3420fe..5aba0b5 100644
--- a/src/examples/expression.ft
+++ b/src/examples/expression.ft
@@ -1,5 +1,6 @@
program expression
int::a
-a=(5+4)*(10/2)+5**2
+! a =7 - 4 + 2
+a =(5+4)*(10/2)+5**2
print*,a
end program expression \ No newline at end of file