.LC0:
        .string "hello world!"
s_sA:
        .quad   .LC0
s_sB:
        .string "hey there"
main:
        push    rbp
        mov     rbp, rsp
        mov     rax, QWORD PTR s_sA[rip]
        mov     rdi, rax
        call    puts
        mov     edi, OFFSET FLAT:s_sB
        call    puts
        mov     eax, 0
        pop     rbp
        ret
