program basic_if
begin
    mov rax 2
    mov rbx 3
    if rax = rbx then
        exit 1
    end if
    exit 0
end program