progs/while-tests/or.while
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 02 Oct 2025 08:46:35 +0100
changeset 996 e6d372af861f
parent 824 fb5462a350b1
permissions -rw-r--r--
updated

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