fork download
  1. global _start
  2.  
  3. section .data
  4.  
  5. section .text
  6.  
  7. _start:
  8. ; your code goes here
  9. je exit
  10.  
  11. exit:
  12. mov eax, 01h ; exit()
  13. xor ebx, ebx ; errno
  14. int 80h
  15.  
Success #stdin #stdout 0s 4640KB
stdin
Standard input is empty
stdout
Standard output is empty