aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test9
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2018-04-24 14:13:29 -0400
committerClyne Sullivan <tullivan99@gmail.com>2018-04-24 14:13:29 -0400
commitdab3b1d51ea9f7f314a37aecb643dc4b7e52fe98 (patch)
tree6a0eaefcaa8ec0027aa23068595c93071d5e7af0 /tests/test9
parentb761569b3aabfb9cd2034d737d4223de534d3dcb (diff)
tests to folder
Diffstat (limited to 'tests/test9')
-rw-r--r--tests/test916
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/test9 b/tests/test9
new file mode 100644
index 0000000..66a9cfb
--- /dev/null
+++ b/tests/test9
@@ -0,0 +1,16 @@
+x = 9
+print(3x)
+print(2x + 5)
+print(x - 9x)
+print(5 + (3x))
+print((x - 4 * 5)2)
+y = 8
+# 2*x*y = 144
+print(x2y)
+print(2xy)
+print(2x*y)
+
+A = 5
+B = 9
+print("")
+print(2AB)