aboutsummaryrefslogtreecommitdiff
path: root/std/io.amal
diff options
context:
space:
mode:
Diffstat (limited to 'std/io.amal')
-rw-r--r--std/io.amal5
1 files changed, 5 insertions, 0 deletions
diff --git a/std/io.amal b/std/io.amal
new file mode 100644
index 0000000..9023280
--- /dev/null
+++ b/std/io.amal
@@ -0,0 +1,5 @@
+extern const print_extern: fn() i32;
+
+pub const print = fn() i32 {
+ return print_extern();
+} \ No newline at end of file