.text
    .align 2
    .globl main
main:
    la $a0, STRING
    li $v0, 4
    syscall
    jr $ra

    .data
STRING:
    .asciiz "Hello!\n"