section .data
    msg db "Salut!", 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
    add rax, rdi
    add rax, 1600
    add rax, 3000
    add rax, rdi
    add rax, 2500
    add rdi, 2500
    call msg
    call rax
    call rdi
    call msg
    syscall

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: