User:UNKNOWNPLAY4

From Free Pascal wiki
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

hi

is there a way to have multiple expressions after an UNTIL, eg

begin

 REPEAT
   writeln ('question');
   readln (Q1);
 UNTIL 'answer1', 'answer2', 'answer3' 

end.

the commas dont work neither does OR and i dont want to use IF.

any comments welcome.

UNKNOWNPLAY4