Result

WA

Duration

494ms

Code [DL]

section .text
global _start
_start:
mov edx,len
mov ecx,msg
mov ebx,1
mov eax,4
int 0x80
mov ebx,0
mov eax,1
int 0x80
section .data
msg db "Hello, World!",0xa
len equ $ - msg

stdin

14 38 45
48 30 58
04 64 71
29 11 85

stdout

Hello, World!

stderr

strace