So my code looks like this
**Procedure DisplayMenu;
Begin
Repeat
Writeln('Hello, ' ,PlayerName);
Writeln('1. Be Guesser');
Writeln('2. Let The Computer Guess');
Writeln('9. Quit');
Readln(MainMenuChoice);
*Until MainMenuChoice=(1) or (2) or (9);*
End; //Procedure//**
And I would be very grateful if someone could explain to me where I have gone wrong.
I think the error is with the Until MainMenuChoice=(1) or (2) or (9); part.