fa/examples/hello_world_macros.fa
Ari Archer c30a3de674
Deprecate mutability contexts
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-07-27 13:41:50 +03:00

12 lines
240 B
Text

include 'std/std.fa'
macro print
%STDOUT %SYS_write sys 4 pop
end
"hello world\n" -- Read only string
%print
%EXIT_SUCCESS -- Set exit code to success
%SYS_exit sys 2 -- Call SYS_exit
pop -- Drop return value