progs/while-tests/or.while
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 19 Sep 2024 19:21:52 +0100
changeset 962 2ecd511e62fa
parent 824 fb5462a350b1
permissions -rw-r--r--
texupdate

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