progs/while-tests/or.while
author Christian Urban <christian.urban@kcl.ac.uk>
Tue, 02 Nov 2021 14:40:06 +0000
changeset 848 08cc74d5a1ff
parent 824 fb5462a350b1
permissions -rw-r--r--
updated

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