fork download
  1. section.data
  2. msg db "hello world",10
  3. len equ $-msg
  4.  
  5. section.text
  6. global _start
  7. _start:
  8. mov rax,1
  9. mov rdi,1
  10. mov rsi,msg
  11. mov rdx,len
  12. syscall
  13. mov rax,60
  14. mov rdi,0
  15. syscall
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
hello world