fork download
  1. section .text
  2. global _start:
  3.  
  4. _start:
  5. mov eax, 4
  6. mov ebx, 1
  7. mov ecx, string
  8. mov edx, lenght
  9. int 80h
  10.  
  11. mov eax, 1
  12. mov ebx, 0
  13. int 80h
  14.  
  15. section .data
  16. string db 'Hello', 0Ah
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.asm:8: error: symbol `lenght' undefined
stdout
Standard output is empty