progs/while-tests/or.while
author Christian Urban <christian.urban@kcl.ac.uk>
Sun, 28 Sep 2025 14:03:59 +0100
changeset 991 b4b97704815b
parent 824 fb5462a350b1
permissions -rw-r--r--
updated

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