It doesn't quit immediately for me—it went into an endless loop in the While.
You probably meant to do
While Y<40 and (V<2) on that line. Keep in mind that Axe's order of operations is strictly left-to-right, so what you're doing right now is essentially
While (Y<40 and V)<2, which I don't think you meant to do.
As a side tip, always compile your programs for Ion unless you specifically want users to be unable to run your program from the home screen with
Asm(prgmNAME). The Ion format is the most compatible: any program compiled for Ion will work in any shell supporting the Ion format, including Ion, Noshell, MirageOS, and DoorsCS (and basically every other decent calculator shell), and will also work from the home screen with Asm(.
As for the spoiler tag, use [spoiler=title][/spoiler] to generate something like this: