fork download
  1. section .data
  2. hello db "Bonjour", 0xA
  3. len equ $ - hello
  4.  
  5. section .bss
  6. input resb 32
  7.  
  8. section .text
  9. global _start
  10.  
  11. _start
  12. ; Code ici
  13. mov rax, 60
  14. xor rdi, rdi
  15. syscall
  16.  
Success #stdin #stdout 0s 5328KB
stdin
Standard input is empty
stdout
Standard output is empty