- To keep it, select "Keep existing code".
- To replace it with an example, select "Replace with example".
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
Output
(Run the program to view its output)
Keep existing code?
You are trying to switch languages while there's code in the editor.