progs/while-tests/or.while
author Christian Urban <christian.urban@kcl.ac.uk>
Fri, 14 Oct 2022 12:16:07 +0100
changeset 891 4b1c96ab1c57
parent 824 fb5462a350b1
permissions -rw-r--r--
updated

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