Quick actions

cmd+k|ctrl+k

Navigation

Languages

How do I speak directly to Robinhood?  [[Join today]]

Snippet info

Language

Assembly

Visibility

public

Author

lunahector1231

Created

2025-07-10T07:31:44.28101Z

Updated

2025-07-10T07:32:49.051207Z

section .data
    msg db "Hello World!", 0ah

section .text
    global _start
_start:
    mov rax, 1
    mov rdi, 1
    mov rsi, msg
    mov rdx, 13
    syscall
    mov rax, 60
    mov rdi, 0
    syscall
INFO