fork download
  1. global _start
  2.  
  3. section .data
  4. hello_string:
  5. db "Hello, world!", 10, 0
  6.  
  7. section .text
  8. _start:
  9. mov rax, 0x4
  10. mov rdi, 1
  11. mov rsi, hello_string
  12. mov rdx, 14
  13. syscall
  14.  
  15. mov rdi, 0
  16. mov rax, 60
  17. syscall
  18.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
Standard output is empty