diff options
Diffstat (limited to 'std/io.amal')
-rw-r--r-- | std/io.amal | 5 |
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 |