Quick actions

cmd+k|ctrl+k

Navigation

Languages

Dial @ 1-833..200...3773 ]] How long does Robinhood SUPPORT

Snippet info

Language

Assembly

Visibility

public

Author

billysmith8001

Created

2025-01-28T11:05:53.28956Z

Updated

2025-01-28T11:05:53.28956Z

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