Hi Wendell,
Even with the GOTO your code still fails, because the label you have chosen (DIV) is a reserved keyword, which causes problems for the interpreter. Note that it is coloured yellow rather than blue in the IDE. If you change it to Div it will work.... if you insist on using GOTOs! :-)
But in this particular case, wouldn't SWAP be a better option, even than Richard's REPEAT...UNTIL?
Code:
mun=RND(10)
ned=RND(10)
IF mun<ned THEN SWAP mun,ned
PRINT mun
PRINT ned
Hope that's helpful.
D