aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-02-27 22:26:35 +0100
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commit76d85a10f6cda93eba29dad5372e8160af7289c8 (patch)
treecfec3043ec45a5e83494ec109e87c239dad6cc47 /tests
parent8201cd9f40897cf6b8e6973b28a8661108702ab1 (diff)
Use multiple threads to parse
Diffstat (limited to 'tests')
-rw-r--r--tests/io.amal3
-rw-r--r--tests/main.amal12
2 files changed, 15 insertions, 0 deletions
diff --git a/tests/io.amal b/tests/io.amal
new file mode 100644
index 0000000..c75fa2d
--- /dev/null
+++ b/tests/io.amal
@@ -0,0 +1,3 @@
+const puts = () {
+
+} \ No newline at end of file
diff --git a/tests/main.amal b/tests/main.amal
new file mode 100644
index 0000000..dde97f7
--- /dev/null
+++ b/tests/main.amal
@@ -0,0 +1,12 @@
+const io = @import("tests/io.amal")
+
+const main = () {
+ var hello = () {
+
+ }
+ hello()
+}
+
+const print = () {
+
+}