#include <iostream>

int main() {

    asm (
        "mov $message, %rdi;"          
        "call puts;"                  
        "jmp end;"                  
        ".section .rodata;"            
        "message: .string \"Successfull\";"
        "end:"
    );

    return 0;
}
Successfull