fork download
  1. section .data
  2. hello: db 'Hello, World!',10
  3. helloLen: equ $-hello
  4.  
  5. section .text
  6. global _start
  7.  
  8. _start:
  9. mov eax,4
  10. mov ebx,1
  11. mov ecx,hello
  12. mov edx,helloLen
  13. int 80h
  14. mov eax,1
  15. mov ebx,0
  16. int 80h
  17.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
Hello, World!