aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
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 = () {
+
+}