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. mov eax, 01h ; exit()
  12. xor ebx, ebx ; errno
  13. int 80h
  14.  
Success #stdin #stdout 0s 5268KB
stdin
Standard input is empty
stdout
Standard output is empty