summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/expectations/add_products.txt1
-rw-r--r--tests/expectations/printi_quotient.txt1
-rw-r--r--tests/vm/add_products.elna3
-rw-r--r--tests/vm/printi_quotient.elna3
4 files changed, 8 insertions, 0 deletions
diff --git a/tests/expectations/add_products.txt b/tests/expectations/add_products.txt
new file mode 100644
index 0000000..e522732
--- /dev/null
+++ b/tests/expectations/add_products.txt
@@ -0,0 +1 @@
+38
diff --git a/tests/expectations/printi_quotient.txt b/tests/expectations/printi_quotient.txt
new file mode 100644
index 0000000..0cfbf08
--- /dev/null
+++ b/tests/expectations/printi_quotient.txt
@@ -0,0 +1 @@
+2
diff --git a/tests/vm/add_products.elna b/tests/vm/add_products.elna
new file mode 100644
index 0000000..a5c116f
--- /dev/null
+++ b/tests/vm/add_products.elna
@@ -0,0 +1,3 @@
+proc main() {
+ printi(2 * 3 + 4 * 8);
+}
diff --git a/tests/vm/printi_quotient.elna b/tests/vm/printi_quotient.elna
new file mode 100644
index 0000000..0f30f4d
--- /dev/null
+++ b/tests/vm/printi_quotient.elna
@@ -0,0 +1,3 @@
+proc main() {
+ printi(4 / 2);
+}