12 lines
240 B
Text
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
|