progs/while-tests/andor.while
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 10 Oct 2022 15:06:41 +0100
changeset 886 8a8d87394608
parent 824 284ac979f289
permissions -rw-r--r--
texupdate

n := 0;
if ((n == 0) || (n == 1)) && ((n == 2) || (n <= 0)) then {
    write "yes"
} else {
    write "no"
}