progs/while-tests/and.while
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 19 Sep 2024 16:32:26 +0100
changeset 961 4543807efe9d
parent 824 fb5462a350b1
permissions -rw-r--r--
test

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