aboutsummaryrefslogtreecommitdiff
path: root/tests/bytecode.amal
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bytecode.amal')
-rw-r--r--tests/bytecode.amal17
1 files changed, 12 insertions, 5 deletions
diff --git a/tests/bytecode.amal b/tests/bytecode.amal
index ef255cd..6941bc8 100644
--- a/tests/bytecode.amal
+++ b/tests/bytecode.amal
@@ -1,8 +1,9 @@
-extern const print_extern: fn;
-extern const print_extern_num: fn(num: i32);
-
-const print = fn {
+/*
+extern const print_extern: fn() i32;
+extern const print_extern_num: fn(num: i32) i32;
+const print = fn() i32 {
+ return 0;
}
const main = fn {
@@ -21,4 +22,10 @@ const print_num = fn(num: i32) i32 {
print_extern_num(num);
print_extern_num(8080);
return num;
-} \ No newline at end of file
+}
+*/
+
+const io = @import("../std/io.amal");
+const main = fn {
+ io.print();
+}