diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/io.amal | 3 | ||||
-rw-r--r-- | tests/main.amal | 12 |
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 = () { + +} |