let foo = concat_with::concat_line!(
"section .data",
" fmt: db '%d', 10, 0",
"",
"section .text",
" extern printf",
" extern fflush",
" global main",
"",
"printint:",
" mov rsi, rdi",
" mov rdi, fmt",
" xor rax, rax",
"",
" call printf",
"",
" ret",
"",
"main:",
);
that's what ill probably use xd