I'm trying to write a while loop, while N > 5.
While I understand just making a loop point and jumping back to it, how should I write a skipcond test for N > 5?
I looked at the one other MARIE question regarding while loops, but didn't quite get an answer out of it.
EDIT: Forgot to mention my idea was to subtract 5 from N, then skipcond 800 to see if it is true or not. Is this a proper way of doing it?