progs/while-tests/or.while
author Christian Urban <christian.urban@kcl.ac.uk>
Fri, 22 Nov 2024 12:42:07 +0000
changeset 973 db987b9717a4
parent 824 fb5462a350b1
permissions -rw-r--r--
updated

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