progs/while-tests/andor.while
author Christian Urban <christian.urban@kcl.ac.uk>
Fri, 17 Oct 2025 11:20:49 +0100
changeset 1009 7fd1997bd14c
parent 824 fb5462a350b1
permissions -rw-r--r--
updated

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