program wloop {
section module {
}
section data {
int rax = 0
string str_0 = "hey: "
string fmt_int = "%lld "
string fmt_str = "%s "
string newline = "\n"
int i = 0
}
section code {
start:
mov i, 0
WHILE_0:
cmp i, 10
jge ENDWHILE_1
print fmt_str, str_0
print fmt_int, i
print newline
add i, 1
jmp WHILE_0
ENDWHILE_1:
done
}
}